A.Enum.sort
You're seeing just the function
sort
, go back to A.Enum module for more information.
Specs
Sorts the enumerable
according to Erlang's term ordering.
Mirrors Enum.sort/1
with higher performance for Aja structures.
Specs
sort( t(val), (val, val -> boolean()) | :asc | :desc | module() | {:asc | :desc, module()} ) :: [val] when val: value()
Sorts the enumerable
by the given function.
Mirrors Enum.sort/2
with higher performance for Aja structures.