Ds\Vector::first

(PECL ds >= 1.0.0)

Ds\Vector::firstReturns the first value in the vector

Descripción

public Ds\Vector::first(): mixed

Returns the first value in the vector.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

The first value in the vector.

Errores/Excepciones

UnderflowException if empty.

Ejemplos

Ejemplo #1 Ds\Vector::first() example

<?php
$vector
= new \Ds\Vector([1, 2, 3]);
var_dump($vector->first());
?>

El resultado del ejemplo sería algo similar a:

int(1)
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top