PHP | Función Ds\\Set union()

La función Ds\Set::union() es una función incorporada en PHP que se usa para crear un nuevo conjunto que contiene la unión de dos conjuntos.

Sintaxis:

Ds\Set public Ds\Set::union ( Ds\Set $set )

Parámetros: esta función acepta un solo parámetro $set que contiene el otro conjunto de la instancia para combinar con la instancia actual.

Valor devuelto: Devuelve un conjunto que contiene la unión de dos conjuntos.

Los siguientes programas ilustran la función Ds\Set::union() en PHP:

Programa 1:

<?php 
  
// Declare a new set
$a = new \Ds\Set([2, 3, 6]); 
  
// Declare another new set
$b = new \Ds\Set([2, 4, 6, 7]); 
  
// Print the Union of both set
echo("Union of both set is: \n"); 
  
print_r($a->union($b));
  
?>
Producción:

Union of both set is: 
Ds\Set Object
(
    [0] => 2
    [1] => 3
    [2] => 6
    [3] => 4
    [4] => 7
)

Programa 2:

<?php 
  
// Declare a new set
$a = new \Ds\Set([2, 3, 6, 7, 8]); 
  
// Declare another new set
$b = new \Ds\Set([2, 3, 5, 8, 9, 10]); 
  
// Print the union of both set
echo("Union of both set is: \n"); 
  
var_dump($a->union($b));
  
?>
Producción:

Union of both set is: 
object(Ds\Set)#3 (8) {
  [0]=>
  int(2)
  [1]=>
  int(3)
  [2]=>
  int(6)
  [3]=>
  int(7)
  [4]=>
  int(8)
  [5]=>
  int(5)
  [6]=>
  int(9)
  [7]=>
  int(10)
}

Referencia: https://www.php.net/manual/en/ds-set.union.php

Publicación traducida automáticamente

Artículo escrito por R_Raj y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *