Cette fonction ne contient aucun paramètre.
An tableau containing all the values in the same order as the pair.
Exemple #1 Ds\Pair::toArray() example
<?php
$pair = new \Ds\Pair("a", 1);
var_dump($pair->toArray());
?>
Résultat de l'exemple ci-dessus est similaire à :
array(2) { ["key"]=> string(1) "a" ["value"]=> int(1) }