Files
swift-mirror/stdlib/public/core/SetBuilder.swift
Alejandro Alonso f9f640b141 Sendablize the standard library
oops dont add this flag

no more nonisolated
2024-03-05 15:02:09 -08:00

49 lines
1.4 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
/// Initializes a `Set` from unique members.
///
/// Using a builder can be faster than inserting members into an empty
/// `Set`.
@frozen
public // SPI(Foundation)
struct _SetBuilder<Element: Hashable> {
@usableFromInline
internal var _target: _NativeSet<Element>
@usableFromInline
internal let _requestedCount: Int
@inlinable
public init(count: Int) {
_target = _NativeSet(capacity: count)
_requestedCount = count
}
@inlinable
@inline(__always)
public mutating func add(member: Element) {
_precondition(_target.count < _requestedCount,
"Can't add more members than promised")
_target._unsafeInsertNew(member)
}
@inlinable
public __consuming func take() -> Set<Element> {
_precondition(_target.count == _requestedCount,
"The number of members added does not match the promised count")
return Set(_native: _target)
}
}
@available(*, unavailable)
extension _SetBuilder: Sendable {}