A.Enum.max

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

max(enumerable, sorter \\ &>=/2, empty_fallback \\ fn -> raise(Enum.EmptyError) end)

View Source

Specs

max(t(val), (val, val -> boolean()) | module(), (() -> empty_result)) ::
  val | empty_result
when val: value(), empty_result: any()

Returns the maximal element in the enumerable according to Erlang's term ordering.

Mirrors Enum.max/3 with higher performance for Aja structures.