Converts the pair to an array.
Nota:
Casting to an array is not supported yet.
Esta função não possui parâmetros.
An array containing all the values in the same order as the pair.
Exemplo #1 Ds\Pair::toArray() example
<?php
$pair = new \Ds\Pair("a", 1);
var_dump($pair->toArray());
?>
O exemplo acima irá imprimir algo similar à:
array(2) { ["key"]=> string(1) "a" ["value"]=> int(1) }