A.Enum.unzip

You're seeing just the function unzip, go back to A.Enum module for more information.

Specs

unzip(t({val1, val2})) :: {[val1], [val2]} when val1: value(), val2: value()

Opposite of zip/2. Extracts two-element tuples from the given enumerable and groups them together.

Mirrors Enum.unzip/1 with higher performance for Aja structures.