Standard LibraryFunctionsdrop_whileOn this pagedrop_while drop_while(Object container, Object f) -> Object Drops leading elements satisfying a predicate. Parameters container: The source container. f: The predicate to test. Returns A new container containing the remainder. Example drop_while([1, 2, 3], odd)//-> [2, 3]