Ds\Set::intersect

(PECL ds >= 1.0.0)

Ds\Set::intersectCreates a new set by intersecting values with another set

说锟斤拷

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

Creates a new set using values common to both the current instance and another set. In other words, returns a copy of the current instance with all values removed that are not in the other set.

A 锟斤拷 B = {x : x 锟斤拷 A 锟斤拷 x 锟斤拷 B}

锟斤拷锟斤拷

set

The other set.

锟斤拷锟斤拷值

The intersection of the current instance and another set.

See Also

锟斤拷锟斤拷

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

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

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

锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�

object(Ds\Set)#3 (1) {
  [0]=>
  int(3)
}