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