Enum.unzip/1
defmodule Enum do
def unzip(enumerable)
end
It takes an enumerable
with elements being two-element tuples and returns a tuple with two lists, each of which is formed by the first and second element of each tuple, respectively.
This function fails unless enumerable
is or can be converted into a list of tuples with exactly two elements in each tuple.