La función Ds\Deque::first() es una función incorporada en PHP que devuelve el primer valor en Deque si Deque no está vacío.
Sintaxis:
public Ds\Deque::first( void ) : mixed
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el primer elemento de Deque, si el deque no está vacío.
Los siguientes programas ilustran la función Ds\Deque::first() en PHP:
Programa 1:
<?php // Declare a deque $deck = new \Ds\Deque([10, 20, 3, 40, 50, 6]); echo("Elements in the Deque\n"); // Display the Deque elements print_r($deck); echo("\nFirst element in the deque: "); // Use first() function to find // first element in the deque var_dump($deck->first()); ?>
Producción:
Elements in the Deque Ds\Deque Object ( [0] => 10 [1] => 20 [2] => 3 [3] => 40 [4] => 50 [5] => 6 ) First element in the deque: int(10)
Programa 2:
<?php // Declare a deque $deck = new \Ds\Deque(["Geeks", "for", "GFG"]); echo("Elements in the Deque\n"); // Display the Deque elements print_r($deck); echo("\nFirst element in the deque: "); // Use first() function to find // first element in the deque var_dump($deck->first()); ?>
Producción:
Elements in the Deque Ds\Deque Object ( [0] => Geeks [1] => for [2] => GFG ) First element in the deque: string(5) "Geeks"
Referencia: http://php.net/manual/en/ds-deque.first.php