HH\Set::skipWhile
Returns a Set containing the values of the current Set starting after
and including the first value that produces true when passed to the
specified callback
public function skipWhile(
(function(Tv): bool) $fn,
): Set<Tv>;
The returned Set will always be a proper subset of the current Set.
Parameters
(function(Tv): bool) $fn- The callback used to determine the starting element for theSet.
Returns
Set<Tv>- ASetthat is a proper subset of the currentSetstarting after the callback returnstrue.
Examples
This example shows how skipWhile can be used to create a new Set by skipping elements at the beginning of an existing Set:
$s = Set {0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144};
// Skip values until we reach one over 10
$s2 = $s->skipWhile($x ==> $x <= 10);
\var_dump($s2);