Returns the first value in the current Pair
Pair
public function firstValue(): Tv1;
Tv1
$p = Pair {'foo', -1.5}; var_dump($p->firstValue());
string(3) "foo"