HH\Set::retainWithKey
Alters the current Set so that it only contains the values that meet a
supplied condition on its "keys" and values
public function retainWithKey(
(function(arraykey, Tv): bool) $callback,
): Set<Tv>;
Sets don't have keys, so the Set values are used as the key in the
callback.
This method is like filterWithKey(), but mutates the current Set too
in addition to returning the current Set.
Future changes made to the current Set ARE reflected in the returned
Set, and vice-versa.
Parameters
(function(arraykey, Tv): bool) $callback
Returns
Set<Tv>- Returns itself.