Skip to content

Commit b79d7c6

Browse files
committed
Limit SamplerType to BitTypes. Fix #84
1 parent 6d6cf7e commit b79d7c6

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "RandomNumbers"
22
uuid = "e6cf234a-135c-5ec9-84dd-332b85af5143"
33
author = ["Sunoru <[email protected]>"]
44
repo = "https://github.com/JuliaRandom/RandomNumbers.jl.git"
5-
version = "1.5.2"
5+
version = "1.5.3"
66

77
[deps]
88
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

src/common.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const BitTypes = Union{Bool, UInt8, UInt16, UInt32, UInt64, UInt128, Int8, Int16
1414

1515
# For compatibility with functions in Random stdlib.
1616
rng_native_52(::AbstractRNG) = UInt64
17-
rand(rng::AbstractRNG, ::Random.SamplerType{T}) where {T} = rand(rng, T)
17+
rand(rng::AbstractRNG, ::Random.SamplerType{T}) where {T<:BitTypes} = rand(rng, T)
1818

1919
# see https://github.com/JuliaRandom/RandomNumbers.jl/issues/8
2020
# TODO: find a better approach.

test/generic.jl

+2
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,6 @@ using Test
2525
@test shuffle(r, a) == [3, 7, 5, 10, 2, 6, 1, 4, 9, 8]
2626
@test randperm(r, 10) == [2, 10, 1, 6, 4, 3, 7, 8, 9, 5]
2727
@test randcycle(r, 10) == [8, 4, 5, 1, 10, 2, 3, 9, 7, 6]
28+
@test rand(r, ComplexF64) == 0.9500729643158807 + 0.9280185794620359im
29+
@test rand(r, Char) == '\Ufe68e'
2830
end

0 commit comments

Comments
 (0)