Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 1 addition & 12 deletions base/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1356,18 +1356,7 @@ used to implement specialized methods.
"""
in(x) = Fix2(in, x)

function in(x, itr::Any)
anymissing = false
for y in itr
v = (y == x)
if ismissing(v)
anymissing = true
elseif v
return true
end
end
return anymissing ? missing : false
end
in(x, itr::Any) = any(==(x), itr)

# Specialized variant of in for Tuple, which can generate typed comparisons for each element
# of the tuple, skipping values that are statically known to be != at compile time.
Expand Down