HH\Pair::toKeysArray
Returns a varray
whose values are the keys from the current Pair
public function toKeysArray(): varray<int>;
Returns
varray<int>
- avarray
with the integer keys from the currentPair
.
Examples
$p = Pair {'foo', -1.5};
\var_dump($p->toKeysArray());