A.Enum.uniq_by

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

uniq_by(enumerable, fun)

View Source

Specs

uniq_by(t(val), (val -> term())) :: [val] when val: value()

Enumerates the enumerable, by removing the elements for which function fun returned duplicate elements.

Mirrors Enum.uniq_by/2 with higher performance for Aja structures.