Julia Unzip Array of Tuples

# slow
unzip = collect(zip(arr...))
# faster
unzip(a) = map(x->getfield.(a, x), fieldnames(eltype(a)))
Joyous Jaguar