A.Enum.drop_while
You're seeing just the function
drop_while
, go back to A.Enum module for more information.
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.