summary refs log tree commit diff stats
path: root/lib/pure/random.nim
Commit message (Expand)AuthorAgeFilesLines
* Rename `Time.nanoseconds` to `nanosecond` (#7673)Oscar Nihlgård2018-04-251-1/+1
* Sub second time resolution (#6978)Oscar Nihlgård2018-04-131-2/+2
* Fixed crash in rand (#7103)Yuriy Glukhov2018-01-181-0/+5
* Better times module (#6552)GULPF2017-12-181-6/+2
* make JS tests green againAraq2017-12-151-1/+1
* many improvements to random.nim; fixes #4726Araq2017-12-141-26/+97
* fixes #6631Andreas Rumpf2017-10-301-1/+1
* work in progress: new implementation for 'a[^1]'Andreas Rumpf2017-10-291-1/+1
* Fixed randomize for 32bit target (#6167)Yuriy Glukhov2017-08-011-2/+2
* fixes #5966Fabian Keller2017-06-201-1/+2
* fixes #5430Araq2017-02-261-1/+1
* fixed bug when the first random(max: float) call is the same value, regardles...Vladar42017-01-201-0/+1
* random.shuffle now takes an openArray procAndreas Rumpf2017-01-111-2/+7
* Documented `shuffle` from `random` module (#5204)Benjamin Summerton2017-01-111-0/+1
* make random.nim work for the JS target againAraq2017-01-081-2/+4
* random.nim: added shuffle proc; fixes 'mod' biasAraq2017-01-081-2/+12
* random.nim: add a warning about crypo; refs #5047Araq2017-01-071-0/+1
* Fix few typosFederico Ceratto2016-10-171-2/+2
* Random module: fix links, improve header.Matthew Baulch2016-07-181-5/+4
* documentation build cleaned upAndreas Rumpf2016-05-311-3/+5
* make test greenAndreas Rumpf2016-05-301-20/+38
* moved random procs from math to its own module (breaking change)Andreas Rumpf2016-05-301-0/+23
* added pure Nim random stdlib moduleAndreas Rumpf2016-05-301-0/+86
395b05f9113d30d1e63390e7a84dbe2a9a55718d'>395b05f91 ^
8b2a9401a ^








92b8fac94 ^
8b2a9401a ^






b731e6ef1 ^

8b2a9401a ^
438703f59 ^
2df9b442c ^
395b05f91 ^
8b2a9401a ^















2df9b442c ^
8b2a9401a ^
b731e6ef1 ^
8b2a9401a ^



2df9b442c ^
8b2a9401a ^
b731e6ef1 ^
8b2a9401a ^

2df9b442c ^
8b2a9401a ^












b731e6ef1 ^
8b2a9401a ^
2df9b442c ^
8b2a9401a ^

439aa2d04 ^
8b2a9401a ^









92b8fac94 ^
8b2a9401a ^
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167