Kind

public enum Kind : String, Hashable, Codable

The kind of operator (prefix, infix, or postfix).

  • A unary operator that comes before its operand.

    Declaration

    Swift

    case prefix
  • An binary operator that comes between its operands.

    Declaration

    Swift

    case infix
  • A unary operator that comes after its operand.

    Declaration

    Swift

    case postfix