A.Enum.flat_map

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

flat_map(enumerable, fun)

View Source

Specs

flat_map(t(val), (val -> t(mapped_val))) :: [mapped_val]
when val: value(), mapped_val: value()

Maps the given fun over enumerable and flattens the result.

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