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


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


用法一

实例方法

isDisjoint(with:)

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

声明

func isDisjoint<S>(with other: S) -> Bool where Element == S.Element, S : Sequence
Element 符合 Hashable 时可用。

返回值

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

参数

other

一系列元素。 other 必须是有限的。

详述

在以下示例中,employees 集合与 visitors 数组的元素不相交,因为两者中都没有出现名称。


let employees: Set = ["Alicia", "Bethany", "Chris", "Diana", "Eric"]
let visitors = ["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+

用法二

实例方法

isDisjoint(with:)

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

声明

func isDisjoint(with other: Set<Element>) -> Bool
Element 符合 Hashable 时可用。

返回值

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大神的英文原创作品 Set isDisjoint(with:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。