Whats the difference between Composition @* and prefix @?
Composition[f,g,h][x]
f@g@h[x]
Functionally they both seem to give the same result.
Whats the difference between Composition @* and prefix @?
Composition[f,g,h][x]
f@g@h[x]
Functionally they both seem to give the same result.
f@*g /@ {x, y}withf@g /@ {x, y}– Carl Woll Mar 23 '19 at 00:25