Implementation
public enum Implementation : Hashable, Sendable
The implementation of a requirement.
-
Concrete or abstract implementation.
Declaration
Swift
case explicit(AnyDeclID) -
Synthesized implementation with given type.
Declaration
Swift
case synthetic(SynthesizedFunctionDecl) -
The declaration of this implementation iff it is explicit. Otherwise,
nil.Declaration
Swift
public var decl: AnyDeclID? { get } -
trueiffselfis synthetic.Declaration
Swift
public var isSynthetic: Bool { get }
View on GitHub