A.Enum.concat

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

Specs

concat(t(t(val))) :: t(val) when val: value()

Given an enumerable of enumerables, concatenates the enumerables into a single list.

Mirrors Enum.concat/1 with higher performance for Aja structures.

Specs

concat(t(val), t(val)) :: t(val) when val: value()

Concatenates the enumerable on the right with the enumerable on the left.

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