AttributeIndex

public enum AttributeIndex : ExpressibleByIntegerLiteral, RawRepresentable

Represents the possible indices of function attributes.

  • Represents the function itself.

    Declaration

    Swift

    case function
  • Represents the function’s return value.

    Declaration

    Swift

    case returnValue
  • Represents the function’s i-th argument.

    Declaration

    Swift

    case argument(Int)
  • Declaration

    Swift

    public init(integerLiteral value: UInt32)
  • Declaration

    Swift

    public init?(rawValue: RawValue)
  • Declaration

    Swift

    public var rawValue: UInt32 { get }