MutableMap::skipWhile

Returns a MutableMap containing the values of the current MutableMap starting after and including the first value that produces true when passed to the specified callback

public function skipWhile(
  (function(Tv): bool) $fn,
): MutableMap<Tk, Tv>;

The returned MutableMap will always be a proper subset of the current MutableMap.

Parameters

  • (function(Tv): bool) $fn - The callback used to determine the starting element for the current MutableMap.

Returns