-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.go
More file actions
69 lines (55 loc) · 1.03 KB
/
Copy pathrandom.go
File metadata and controls
69 lines (55 loc) · 1.03 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package gosugar
import (
"math/rand"
"time"
)
func init() {
rand.Seed(time.Now().UnixNano())
}
//
// RANDOM INT (min inclusive, max inclusive)
//
func RandInt(min, max int) int {
if min > max {
panic("min cannot be greater than max")
}
return rand.Intn(max-min+1) + min
}
//
// RANDOM FLOAT (min inclusive, max exclusive)
//
func RandFloat(min, max float64) float64 {
if min >= max {
panic("min must be less than max")
}
return min + rand.Float64()*(max-min)
}
//
// RANDOM BOOL
//
func RandBool() bool {
return rand.Intn(2) == 1
}
//
// CHOICE (pick random element)
//
func Choice[T any](items []T) T {
if len(items) == 0 {
panic("cannot choose from empty slice")
}
return items[rand.Intn(len(items))]
}
//
// RANDOM STRING (letters only)
//
func RandString(length int) string {
if length <= 0 {
panic("length must be positive")
}
const letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
b := make([]byte, length)
for i := range b {
b[i] = letters[rand.Intn(len(letters))]
}
return string(b)
}