You can use the pipe operator for this:
julia> f, g, h = sin, cos, tan
(sin, cos, tan)
julia> 1 .|> (f, g, h)
(0.8414709848078965, 0.5403023058681398, 1.5574077246549023)
You can use the pipe operator for this:
julia> f, g, h = sin, cos, tan
(sin, cos, tan)
julia> 1 .|> (f, g, h)
(0.8414709848078965, 0.5403023058681398, 1.5574077246549023)