Ds\Map::first

(PECL ds >= 1.0.0)

Ds\Map::firstReturns the first pair in the map

Descrição

public Ds\Map::first ( void ) : Ds\Pair

Returns the first pair in the map.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

The first pair in the map.

Erros

UnderflowException if empty.

Exemplos

Exemplo #1 Ds\Map::first() example

<?php
$map 
= new \Ds\Map(["a" => 1"b" => 2"c" => 3]);
var_dump($map->first());
?>

O exemplo acima irá imprimir algo similar à:

object(Ds\Pair)#2 (2) {
  ["key"]=>
  string(1) "a"
  ["value"]=>
  int(1)
}