Skip to content

Commit 28bf081

Browse files
committed
Add @functorize(centralizedabs2fun)
Note that `@functorize(centralizedabs2fun)` returns the type which can then be used to construct the actual functor as e.g. `@functorize(centralizedabs2fun)(23)`.
1 parent 726124e commit 28bf081

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/Compat.jl

+2
Original file line numberDiff line numberDiff line change
@@ -983,6 +983,7 @@ macro functorize(f)
983983
if VERSION >= v"0.5.0-" && !isdefined(Base, :BitFunctorUnary)
984984
f === :scalarmax ? :(Base.scalarmax) :
985985
f === :scalarmin ? :(Base.scalarmin) :
986+
f === :centralizedabs2fun ? :(typeof(Base.centralizedabs2fun(0)).name.primary) :
986987
f
987988
else
988989
f = f === :identity ? :(Base.IdFun()) :
@@ -996,6 +997,7 @@ macro functorize(f)
996997
f === :* ? :(Base.MulFun()) :
997998
f === :scalarmax ? :(Base.MaxFun()) :
998999
f === :scalarmin ? :(Base.MinFun()) :
1000+
f === :centralizedabs2fun ? :(Base.CentralizedAbs2Fun) :
9991001
f
10001002
if VERSION >= v"0.4.0-dev+4902"
10011003
f = f === :< ? :(Base.LessFun()) :

test/runtests.jl

+5
Original file line numberDiff line numberDiff line change
@@ -1060,3 +1060,8 @@ for (Fun, func) in [(:AndFun, :&),
10601060
end
10611061
end
10621062
end
1063+
@test isa(@functorize(centralizedabs2fun)(1), @functorize(centralizedabs2fun))
1064+
@test isa(@functorize(centralizedabs2fun)(1.0), @functorize(centralizedabs2fun))
1065+
let a = rand(1:10, 10)
1066+
@eval @test mapreduce(x -> abs2(x - 1), +, $(a)) == mapreduce(@functorize(centralizedabs2fun)(1), +, $(a))
1067+
end

0 commit comments

Comments
 (0)