A.Enum.reverse

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

Specs

reverse(t(val)) :: [val] when val: value()

Returns a list of elements in enumerable in reverse order.

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

Link to this function

reverse(enumerable, tail)

View Source

Specs

reverse(t(val), t(val)) :: [val] when val: value()

Reverses the elements in enumerable, concatenates the tail, and returns it as a list.

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