ExistentialTypeExpr
public struct ExistentialTypeExpr : Expr
The expression of an existential type (e.g., any P & Q or any Array).
-
Declaration
Swift
public let site: SourceRange -
The site of the
anykeyword.Declaration
Swift
public let introducerSite: SourceRange -
The traits to which the witness conforms.
Declaration
Swift
public let traits: TraitComposition -
The where clause of the expression, if any.
Declaration
Swift
public let whereClause: SourceRepresentable<WhereClause>? -
Undocumented
Declaration
Swift
public init( introducerSite: SourceRange, traits: TraitComposition, whereClause: SourceRepresentable<WhereClause>?, site: SourceRange )
View on GitHub