A.Enum.min
You're seeing just the function
min
, go back to A.Enum module for more information.
Link to this function
min(enumerable, sorter \\ &<=/2, empty_fallback \\ fn -> raise(Enum.EmptyError) end)
View SourceSpecs
min(t(val), (val, val -> boolean()) | module(), (() -> empty_result)) :: val | empty_result when val: value(), empty_result: any()
Returns the minimal element in the enumerable
according
to Erlang's term ordering.
Mirrors Enum.min/3
with higher performance for Aja structures.