We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
some
none
1 parent 9045819 commit 34a16f5Copy full SHA for 34a16f5
Sources/StructuredQueriesCore/Optional.swift
@@ -1,6 +1,8 @@
1
public protocol _OptionalProtocol<Wrapped> {
2
associatedtype Wrapped
3
var _wrapped: Wrapped? { get }
4
+ static var none: Self { get }
5
+ static func some(_ wrapped: Wrapped) -> Self
6
}
7
8
extension Optional: _OptionalProtocol {
0 commit comments