Pass a tuple to map ![]()
As in, f(map(g, ("a","c","k"))...).
Either of these is efficient:
v = [1,2,3]
Tuple{Int,Int,Int}(v)
NTuple{3,Int}(v)
Pass a tuple to map ![]()
As in, f(map(g, ("a","c","k"))...).
Either of these is efficient:
v = [1,2,3]
Tuple{Int,Int,Int}(v)
NTuple{3,Int}(v)