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);
object(HH\Vector)#2 (4) {
[0]=>
string(3) "red"
[1]=>
string(5) "green"
[2]=>
string(4) "blue"
[3]=>
string(6) "yellow"
}