enum CatspeakAssign
enum CatspeakAssign {
VANILLA,
MULTIPLY,
DIVIDE,
SUBTRACT,
PLUS,
// 1 fields omitted
}
🔬 This is an experimental feature. It may change at any moment.
Represents the set of assignment operators understood by Catspeak.
§ VANILLA
VANILLA
The typical =
assignment.
§ MULTIPLY
MULTIPLY
Multiply assign *=
.
§ DIVIDE
DIVIDE
Division assign /=
.
§ SUBTRACT
SUBTRACT
Subtract assign -=
.
§ PLUS
PLUS
Plus assign +=
.