How to make splat, map and tuples be efficient

Pass a tuple to map :slight_smile:
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)
3 Likes