A.Enum.dedup_by

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

dedup_by(enumerable, fun)

View Source

Specs

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

Enumerates the enumerable, returning a list where all consecutive duplicated elements are collapsed to a single element.

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