Files
swift-mirror/stdlib/public/Synchronization/Cell.swift
Alejandro Alonso fafdc8663b Make _Cell public
2025-04-08 16:07:54 -07:00

47 lines
1.3 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift Atomics open source project
//
// Copyright (c) 2024 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
//
//===----------------------------------------------------------------------===//
import Builtin
@available(SwiftStdlib 6.0, *)
@frozen
@_rawLayout(like: Value, movesAsLike)
public struct _Cell<Value: ~Copyable>: ~Copyable {
@available(SwiftStdlib 6.0, *)
@_alwaysEmitIntoClient
@_transparent
public var _address: UnsafeMutablePointer<Value> {
unsafe UnsafeMutablePointer<Value>(_rawAddress)
}
@available(SwiftStdlib 6.0, *)
@_alwaysEmitIntoClient
@_transparent
internal var _rawAddress: Builtin.RawPointer {
Builtin.addressOfRawLayout(self)
}
@available(SwiftStdlib 6.0, *)
@_alwaysEmitIntoClient
@_transparent
public init(_ initialValue: consuming Value) {
unsafe _address.initialize(to: initialValue)
}
@available(SwiftStdlib 6.0, *)
@_alwaysEmitIntoClient
@inlinable
deinit {
unsafe _address.deinitialize(count: 1)
}
}