We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1c57a2 commit 0efe75aCopy full SHA for 0efe75a
REQUIRE
@@ -1,3 +1,4 @@
1
julia 0.6
2
Missings
3
Reexport
4
+Compat 0.32.0
src/value.jl
@@ -126,7 +126,7 @@ Base.isequal(::Missing, ::CatValue) = false
126
127
Base.in(x::CatValue, y::Any) = get(x) in y
128
Base.in(x::CatValue, y::Set) = get(x) in y
129
-Base.in(x::CatValue, y::Range{T}) where {T<:Integer} = get(x) in y
+Base.in(x::CatValue, y::AbstractRange{T}) where {T<:Integer} = get(x) in y
130
131
Base.hash(x::CatValue, h::UInt) = hash(get(x), h)
132
0 commit comments