ArgumentResolutionResult
public enum ArgumentResolutionResult : Hashable, Monotonic
Information identifying a run-time argument of a function or subscript call.
-
The argument is the n-th expression in the syntax of the call.
Declaration
Swift
case explicit(Int) -
The argument is a an implicit declaration reference.
Declaration
Swift
case implicit(AnyDeclID) -
The argument is elided; the callee receive the parameter’s default value.
Declaration
Swift
case defaulted
View on GitHub