You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray-core/common/dice/dice.go

21 lines
388 B

9 years ago
// Package dice contains common functions to generate random number.
// It also initialize math/rand with the time in seconds at launch time.
9 years ago
package dice
import (
"math/rand"
"time"
9 years ago
)
9 years ago
// Roll returns a non-negative number between 0 (inclusive) and n (exclusive).
9 years ago
func Roll(n int) int {
if n == 1 {
return 0
}
return rand.Intn(n)
}
func init() {
rand.Seed(time.Now().Unix())
}