Skip to content

Commit

Permalink
last depwarn
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeInnes committed Oct 3, 2017
1 parent 27b424b commit 64124ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/liblazy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ else
end

@rec any(xs::List) = isempty(xs) ? false : first(xs) || any(tail(xs))
any(::typeof(@functorize(identity)), xs::List) = any(xs)
any(::typeof(identity), xs::List) = any(xs)

@rec all(xs::List) = isempty(xs) ? true : first(xs) && all(tail(xs))
all(::typeof(@functorize(identity)), xs::List) = all(xs)
all(::typeof(identity), xs::List) = all(xs)

0 comments on commit 64124ae

Please sign in to comment.