oschulz / FunctionChains.jl

Function chains in Julia
Other
4 stars 0 forks source link

Add fcomp as a plug-in replacement for Julia-native function composition #9

Open oschulz opened 10 months ago

oschulz commented 10 months ago

Add

fcomp(fs) = fchain(reverse(fs))

Should also support fcomp(f3, f2, f1), equivalent to fchain(f1, f2, f3).