Converts the pair to an tableau.
Note:
Casting to an tableau is not supported yet.
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());
?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
array(2) { ["key"]=> string(1) "a" ["value"]=> int(1) }