Ds\Set::union

(PECL ds >= 1.0.0)

Ds\Set::unionCreates a new set using values from the current instance and another set

说明

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

Creates a new set that contains the values of the current instance as well as the values of another set.

A ∪ B = {x: x ∈ A ∨ x ∈ B}

参数

set

The other set, to combine with the current instance.

返回值

A new set containing all the values of the current instance as well as another set.

See Also

范例

Example #1 Ds\Set::union() example

<?php
$a 
= new \Ds\Set([123]);
$b = new \Ds\Set([345]);

var_dump($a->union($b));
?>

以上例程的输出类似于:

object(Ds\Set)#3 (5) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
  [3]=>
  int(4)
  [4]=>
  int(5)
}
相关文章
php cairocontext establishes a new clip region from the current clipphp deque creates a new deque using a callable to determine which values to includephp map creates a new map using keys that aren t in another mapphp map creates a new map using a callable to determine which pairs to includephp map creates a new map using values from the current instance and another mapphp map creates a new map using keys of either the current instance or of another map but not of bothphp sequence creates a new sequence using a callable to determine which values to includephp set creates a new instancephp set creates a new set using values that aren t in another setphp set creates a new set using a callable to determine which values to includephp set creates a new set by intersecting values with another setphp set creates a new set using values from the current instance and another setphp set creates a new set using values in either the current instance or in another set but not in bothphp vector creates a new vector using a callable to determine which values to includephp evloop creates evcheck object associated with the current event loop instancephp evloop creates evsignal watcher object associated with the current event loop instancephp cubrid mysql 兼容性函数 return an array with the lengths of the values of each field from the current rowphp hyperwave api 函数 creates a new instance of class hwapi object newphp sqlite 函数 fetches the current row from a result set as an arrayphp rrdgraph creates new rrdgraph instance
关注编程学问公众号