实例方法
form
formIntersection(_:)
删除集合中不在给定序列中的元素。
声明
mutating func formIntersection<S>(_ other: S) where Element == S.Element, S : Sequence
当
Element
符合 Hashable
时可用。参数
other
一系列元素。
other
必须是有限的。
详述
在以下示例中,employees
集合中不也是 neighbors
集合成员的元素将被删除。特别是,名称 "Alicia"
、 "Chris"
和 "Diana"
被删除。
var employees: Set = ["Alicia", "Bethany", "Chris", "Diana", "Eric"]
let neighbors = ["Bethany", "Eric", "Forlani", "Greta"]
employees.formIntersection(neighbors)
print(employees)
// Prints "["Bethany", "Eric"]"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift Set formSymmetricDifference(_:)用法及代码示例
- Swift Set formUnion(_:)用法及代码示例
- Swift Set forEach(_:)用法及代码示例
- Swift Set first(where:)用法及代码示例
- Swift Set filter(_:)用法及代码示例
- Swift Set firstIndex(where:)用法及代码示例
- Swift Set first用法及代码示例
- Swift Set flatMap(_:)用法及代码示例
- Swift Set subtracting(_:)用法及代码示例
- Swift Set remove(_:)用法及代码示例
- Swift Set prefix(upTo:)用法及代码示例
- Swift Set subscript(_:)用法及代码示例
- Swift Set update(with:)用法及代码示例
- Swift Set dropFirst(_:)用法及代码示例
- Swift Set joined(separator:)用法及代码示例
- Swift Set min()用法及代码示例
- Swift Set elementsEqual(_:)用法及代码示例
- Swift Set init(arrayLiteral:)用法及代码示例
- Swift Set min(by:)用法及代码示例
- Swift Set symmetricDifference(_:)用法及代码示例
- Swift Set joined()用法及代码示例
- Swift Set isDisjoint(with:)用法及代码示例
- Swift Set shuffled()用法及代码示例
- Swift Set contains(_:)用法及代码示例
- Swift Set isStrictSubset(of:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Set formIntersection(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。