A.Enum.sort_by

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

sort_by(enumerable, mapper, sorter \\ &<=/2)

View Source

Specs

sort_by(
  t(val),
  (val -> mapped_val),
  (val, val -> boolean()) | :asc | :desc | module() | {:asc | :desc, module()}
) :: [val]
when val: value(), mapped_val: value()

Sorts the mapped results of the enumerable according to the provided sorter function.

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