mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This will allow passing `nil` as a parameter to a C++ function that takes a `std::optional<T>`. rdar://114194600
54 lines
1.2 KiB
Swift
54 lines
1.2 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2023 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
public protocol CxxOptional<Wrapped>: ExpressibleByNilLiteral {
|
|
associatedtype Wrapped
|
|
|
|
init()
|
|
|
|
func __convertToBool() -> Bool
|
|
|
|
var pointee: Wrapped { get }
|
|
}
|
|
|
|
extension CxxOptional {
|
|
public init(nilLiteral: ()) {
|
|
self.init()
|
|
}
|
|
|
|
@inlinable
|
|
public var hasValue: Bool {
|
|
get {
|
|
return __convertToBool()
|
|
}
|
|
}
|
|
|
|
@inlinable
|
|
public var value: Wrapped? {
|
|
get {
|
|
guard hasValue else { return nil }
|
|
return pointee
|
|
}
|
|
}
|
|
}
|
|
|
|
extension Optional {
|
|
@inlinable
|
|
public init(fromCxx value: some CxxOptional<Wrapped>) {
|
|
guard value.__convertToBool() else {
|
|
self = nil
|
|
return
|
|
}
|
|
self = value.pointee
|
|
}
|
|
}
|