A.Enum.find_value

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

find_value(enumerable, default \\ nil, fun)

View Source

Specs

find_value(t(val), default, (val -> new_val)) :: new_val | default
when val: value(), new_val: value(), default: value()

Similar to find/3, but returns the value of the function invocation instead of the element itself.

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