Consumes and skips elements while f is true and returns the rest.
f
@override @pragma("vm:prefer-inline") Iter<T> skipWhile(bool Function(T) f) => Iter.fromIterable(super.skipWhile(f));