HH\Set::values
Returns a Vector
containing the values of the current Set
public function values(): Vector<Tv>;
This method is interchangeable with toVector()
and keys()
.
Returns
Vector<Tv>
- aVector
(integer-indexed) containing the values of the currentSet
.
Examples
$s = Set {'red', 'green', 'blue', 'yellow'};
$v = $s->values();
\var_dump($v);