Enum.uniq
You're seeing just the function
uniq
, go back to Enum module for more information.
Specs
Enumerates the enumerable
, removing all duplicated elements.
Examples
iex> Enum.uniq([1, 2, 3, 3, 2, 1])
[1, 2, 3]