当前位置: 首页>>编程示例 >>用法及示例精选 >>正文


Swift SetAlgebra isDisjoint(with:)用法及代码示例

实例方法

isDisjoint(with:)

返回一个布尔值,指示该集合是否没有与给定集合共有的成员。

必需的。提供默认实现。

声明

func isDisjoint(with other: Self) -> Bool

返回值

true 如果集合没有与 other 相同的元素;否则,false

参数

other

与当前集合类型相同的集合。

详述

在以下示例中,employees 集与 visitors 集不相交,因为两个集中都没有出现名称。


let employees: Set = ["Alicia", "Bethany", "Chris", "Diana", "Eric"]
let visitors: Set = ["Marcia", "Nathaniel", "Olivia"]
print(employees.isDisjoint(with: visitors))
// Prints "true"

可用版本

iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+

相关用法


注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 SetAlgebra isDisjoint(with:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。