@@ -9,7 +9,7 @@ $r <: AbstractXorshift64
99$r ([seed])
1010```
1111
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.
1313"""
1414 @doc doc_xorshift64 (" Xorshift64" ) Xorshift64
1515 @doc doc_xorshift64 (" Xorshift64Star" ) Xorshift64Star
@@ -22,7 +22,7 @@ $r([seed])
2222```
2323
2424$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.
2626"""
2727 @doc doc_xorshift128 (" Xorshift128" ) Xorshift128
2828 @doc doc_xorshift128 (" Xorshift128Star" ) Xorshift128Star
@@ -36,7 +36,7 @@ $r([seed...])
3636```
3737
3838$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.
4040"""
4141 @doc doc_xorshift1024 (" Xorshift1024" ) Xorshift1024
4242 @doc doc_xorshift1024 (" Xorshift1024Star" ) Xorshift1024Star
@@ -50,7 +50,7 @@ $r([seed])
5050```
5151
5252$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.
5454"""
5555 @doc doc_xoroshiro128 (" Xoroshiro128" ) Xoroshiro128
5656 @doc doc_xoroshiro128 (" Xoroshiro128Star" ) Xoroshiro128Star
0 commit comments