A.Enum.drop_while

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

drop_while(enumerable, fun)

View Source

Specs

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

Drops elements at the beginning of the enumerable while fun returns a truthy value.

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