PHP Conference Japan 2024

Ds\Set::intersect

(PECL ds >= 1.0.0)

Ds\Set::intersect通过与另一个集合相交创建新的集合

描述

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

使用当前实例和另一个set共有的值创建一个新的集合。换句话说,返回当前实例的副本,其中删除了不在另一个set中的所有值。

A ∩ B = {x : x ∈ A ∧ x ∈ B}

参数

set

另一个集合。

返回值

当前实例和另一个set的交集。

参见

范例

示例 #1 Ds\Set::intersect() 示例

<?php
$a
= new \Ds\Set([1, 2, 3]);
$b = new \Ds\Set([3, 4, 5]);

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

以上示例将输出类似以下内容

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

用户贡献的注释

此页面没有用户贡献的注释。
To Top