ConstSet::skipWhile
Returns a ConstSet
containing the values of the current ConstSet
starting after and including the first value that produces true
when
passed to the specified callback
public function skipWhile(
(function(Tv): bool) $fn,
): ConstSet<Tv>;
The returned ConstSet
will always be a proper subset of the current
ConstSet
.
Parameters
(function(Tv): bool) $fn
- The callback used to determine the starting element for theConstSet
.
Returns
ConstSet<Tv>
- AConstSet
that is a proper subset of the currentConstSet
starting after the callback returnstrue
.