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
VANILLAThe typical = assignment.
§ MULTIPLY
MULTIPLYMultiply assign *=.
§ DIVIDE
DIVIDEDivision assign /=.
§ SUBTRACT
SUBTRACTSubtract assign -=.
§ PLUS
PLUSPlus assign +=.