ParamTypes

Objective-C

NS_ENUM(int, ParamTypes) {
    C = 0,
    GAMMA = 1,
    P = 2,
    NU = 3,
    COEF = 4,
    DEGREE = 5
}

Swift

enum ParamTypes : Int32
  • C

    Declaration

    Objective-C

    C = 0

    Swift

    case C = 0
  • Declaration

    Objective-C

    GAMMA = 1

    Swift

    case GAMMA = 1
  • P

    Declaration

    Objective-C

    P = 2

    Swift

    case P = 2
  • NU

    Declaration

    Objective-C

    NU = 3

    Swift

    case NU = 3
  • Declaration

    Objective-C

    COEF = 4

    Swift

    case COEF = 4
  • Declaration

    Objective-C

    DEGREE = 5

    Swift

    case DEGREE = 5