@@ -9,7 +9,7 @@ $r <: AbstractXorshift64
9
9
$r ([seed])
10
10
```
11
11
12
- $r RNG. The `seed` will be automatically convert to an `UInt64` number.
12
+ $r RNG. The `seed` will be automatically convert to an `UInt64` number. A zero seed is not acceptable.
13
13
"""
14
14
@doc doc_xorshift64 (" Xorshift64" ) Xorshift64
15
15
@doc doc_xorshift64 (" Xorshift64Star" ) Xorshift64Star
@@ -22,7 +22,7 @@ $r([seed])
22
22
```
23
23
24
24
$r RNG. The `seed` can be a `Tuple` of two `UInt64`s, or an `Integer` which will be automatically convert to
25
- an `UInt128` number.
25
+ an `UInt128` number. Zero seeds are not acceptable.
26
26
"""
27
27
@doc doc_xorshift128 (" Xorshift128" ) Xorshift128
28
28
@doc doc_xorshift128 (" Xorshift128Star" ) Xorshift128Star
@@ -36,7 +36,7 @@ $r([seed...])
36
36
```
37
37
38
38
$r RNG. The `seed` can be a `Tuple` of 16 `UInt64`s, or several (no more than 16) `Integer`s which will all
39
- be automatically converted to `UInt64` numbers.
39
+ be automatically converted to `UInt64` numbers. Zero seeds are not acceptable.
40
40
"""
41
41
@doc doc_xorshift1024 (" Xorshift1024" ) Xorshift1024
42
42
@doc doc_xorshift1024 (" Xorshift1024Star" ) Xorshift1024Star
@@ -50,7 +50,7 @@ $r([seed])
50
50
```
51
51
52
52
$r RNG. The `seed` can be a `Tuple` of two `UInt64`s, or an `Integer` which will be automatically convert to
53
- an `UInt128` number.
53
+ an `UInt128` number. Zero seeds are not acceptable.
54
54
"""
55
55
@doc doc_xoroshiro128 (" Xoroshiro128" ) Xoroshiro128
56
56
@doc doc_xoroshiro128 (" Xoroshiro128Star" ) Xoroshiro128Star
0 commit comments