实例方法
update(with:)
无条件地将给定元素插入到集合中。
声明
@discardableResult mutating func update(with newMember: Element) -> Element?
当
Element
符合 Hashable
时可用。返回值
如果集合已经包含这样的成员,则等于 newMember
的元素;否则,nil
。在某些情况下,返回的元素可以通过身份比较或其他方式与newMember
区分开来。
参数
newMember
要插入集合的元素。
详述
如果集合中已包含等于newMember
的元素,则newMember
替换现有元素。在此示例中,将现有元素插入到 classDays
中,即一组星期几。
enum DayOfTheWeek: Int {
case sunday, monday, tuesday, wednesday, thursday,
friday, saturday
}
var classDays: Set<DayOfTheWeek> = [.monday, .wednesday, .friday]
print(classDays.update(with: .monday))
// Prints "Optional(DayOfTheWeek.monday)"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift Set union(_:)用法及代码示例
- Swift Set subtracting(_:)用法及代码示例
- Swift Set remove(_:)用法及代码示例
- Swift Set prefix(upTo:)用法及代码示例
- Swift Set subscript(_:)用法及代码示例
- Swift Set formIntersection(_:)用法及代码示例
- 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:)用法及代码示例
- Swift Set max(by:)用法及代码示例
- Swift Set first(where:)用法及代码示例
- Swift Set intersection(_:)用法及代码示例
- Swift Set suffix(from:)用法及代码示例
- Swift Set formSymmetricDifference(_:)用法及代码示例
- Swift Set formUnion(_:)用法及代码示例
- Swift Set split(maxSplits:omittingEmptySubsequences:whereSeparator:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Set update(with:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。