-
Notifications
You must be signed in to change notification settings - Fork 0
/
byte.go
43 lines (34 loc) · 840 Bytes
/
byte.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package chance
import "math"
// ByteOption is a type
type ByteOption func(*ByteOptions)
// ByteOptions is int8 options
type ByteOptions struct {
min byte
max byte
}
func (ch *chance) Byte(options ...ByteOption) byte {
ops := ByteOptions{min: 0, max: math.MaxUint8}
for i := range options {
options[i](&ops)
}
ch.r.Seed(ch.seed)
// TODO: handle error on bad options
return byte(ch.r.Int31n(int32(ops.max)-int32(ops.min)) + int32(ops.min))
}
// Byte returns a random byte
func Byte(options ...ByteOption) byte {
return defaultChance.Byte(options...)
}
// SetByteMin sets min of random byte
func SetByteMin(min byte) ByteOption {
return func(iOpts *ByteOptions) {
iOpts.min = min
}
}
// SetByteMax sets max of random byte
func SetByteMax(max byte) ByteOption {
return func(iOpts *ByteOptions) {
iOpts.max = max
}
}