I often use |>. You can get multiple args to work with x... and anonymous functions.
function foo(a,b)
a * b
end
x = (3,4) |> x->foo(x...) |> x->foo(x,7)
x == foo(foo(3,4),7) # true
Is this what you were looking for?
I often use |>. You can get multiple args to work with x... and anonymous functions.
function foo(a,b)
a * b
end
x = (3,4) |> x->foo(x...) |> x->foo(x,7)
x == foo(foo(3,4),7) # true
Is this what you were looking for?