HH\Set::firstKey
Returns the first "key" in the current Set
public function firstKey(): ?arraykey;
Since Set
s do not have keys, it returns the first value.
This method is interchangeable with firstValue()
.
Returns
Examples
This example shows that firstKey
returns the first value in the Set
. An empty Set
will return null
as its first key.
$s = Set {'red', 'green', 'blue', 'yellow'};
\var_dump($s->firstKey());
$s = Set {};
\var_dump($s->firstKey());