From 64124ae960a0249ddaa4a51f821699bfedb0232a Mon Sep 17 00:00:00 2001 From: Mike J Innes Date: Tue, 3 Oct 2017 19:49:57 +0100 Subject: [PATCH] last depwarn --- src/liblazy.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/liblazy.jl b/src/liblazy.jl index 99e765b..0e9e11e 100644 --- a/src/liblazy.jl +++ b/src/liblazy.jl @@ -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)