TupleElement
Describes tuple type element
-
Tuple element name
Declaration
Swift
public let name: String? -
Tuple element type name
Declaration
Swift
public var typeName: TypeName -
Tuple element type, if known
Declaration
Swift
public var type: Type? -
Declaration
Swift
public var asSource: String { get } -
Declaration
Swift
public func diffAgainst(_ object: Any?) -> DiffableResult -
Whether type is optional. Shorthand for
typeName.isOptionalDeclaration
Swift
public var isOptional: Bool { get } -
Whether type is implicitly unwrapped optional. Shorthand for
typeName.isImplicitlyUnwrappedOptionalDeclaration
Swift
public var isImplicitlyUnwrappedOptional: Bool { get } -
Type name without attributes and optional type information. Shorthand for
typeName.unwrappedTypeNameDeclaration
Swift
public var unwrappedTypeName: String { get } -
Whether type is a tuple. Shorthand for
typeName.isTupleDeclaration
Swift
public var isTuple: Bool { get } -
Whether type is a closure. Shorthand for
typeName.isClosureDeclaration
Swift
public var isClosure: Bool { get } -
Whether type is an array. Shorthand for
typeName.isArrayDeclaration
Swift
public var isArray: Bool { get } -
Whether type is a set. Shorthand for
typeName.isSetDeclaration
Swift
public var isSet: Bool { get } -
Whether type is a dictionary. Shorthand for
typeName.isDictionaryDeclaration
Swift
public var isDictionary: Bool { get }
View on GitHub
TupleElement Class Reference