La función Ds\Deque::apply() es una función incorporada en PHP que se usa para actualizar los valores de Deque realizando operaciones según lo definido por la función de devolución de llamada.
Sintaxis:
public Ds\Deque::apply( $callback ) : void
Parámetros: esta función acepta un solo parámetro $callback que contiene la función que define la operación que se realizará en cada elemento de Deque.
Valor devuelto : Esta función no devuelve ningún valor.
Los siguientes programas ilustran la función Ds\Deque::apply() en PHP:
Programa 1:
<?php // Declare deque $deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]); echo("\nElements in the deque are\n"); // Display the deque elements print_r($deck); // Use apply() function to implement // the operation $deck->apply(function($element) { return $element * 10; }); echo("\nUpdated elements in the deque\n"); // Display the deque elements print_r($deck); ?>
Producción:
Elements in the deque are Ds\Deque Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 ) Updated elements in the deque Ds\Deque Object ( [0] => 10 [1] => 20 [2] => 30 [3] => 40 [4] => 50 [5] => 60 )
Programa 2:
<?php // Declare deque $deck = new \Ds\Deque([10, 20, 30, 40, 50, 60]); echo("\nElements in the deque are\n"); // Display the deque elements print_r($deck); // Use apply() function to implement // the operation $deck->apply(function($element) { return $element % 10; }); echo("\nUpdated elements in the deque\n"); // Display the deque elements print_r($deck); ?>
Producción:
Elements in the deque are Ds\Deque Object ( [0] => 10 [1] => 20 [2] => 30 [3] => 40 [4] => 50 [5] => 60 ) Updated elements in the deque Ds\Deque Object ( [0] => 0 [1] => 0 [2] => 0 [3] => 0 [4] => 0 [5] => 0 )
Referencia: http://php.net/manual/en/ds-deque.apply.php