GoLang Ds\Pair::toArray

request it (287)
GoLang replacement for PHP's Ds\Pair::toArray [edit | history]



Do you know a GoLang replacement for PHP's Ds\Pair::toArray? Write it!

PHP Ds\Pair::toArray

PHP original manual for Ds\Pair::toArray [ show | php.net ]

Ds\Pair::toArray

(PECL ds >= 1.0.0)

Ds\Pair::toArray Converts the pair to an array

Description

public array Ds\Pair::toArray ( void )

Converts the pair to an array.

Note:

Casting to an array is not supported yet.

Parameters

This function has no parameters.

Return Values

An array containing all the values in the same order as the pair.

Examples

Example #1 Ds\Pair::toArray() example

<?php
$pair 
= new \Ds\Pair("a"1);

var_dump($pair->toArray());
?>

The above example will output something similar to:

array(2) {
  ["key"]=>
  string(1) "a"
  ["value"]=>
  int(1)
}