home *** CD-ROM | disk | FTP | other *** search
- /*flagbitsfortheoperatorsdefinedforanoperatortype*/
-
- uint
- OP_ADD=0b0000000000000001,
- OP_SUB=0b0000000000000010,
- OP_MUL=0b0000000000000100,
- OP_DIV=0b0000000000001000,
- OP_MOD=0b0000000000010000,
- OP_NEG=0b0000000000100000,
- OP_ABS=0b0000000001000000,
- OP_IOR=0b0000000010000000,
- OP_AND=0b0000000100000000,
- OP_XOR=0b0000001000000000,
- OP_SHL=0b0000010000000000,
- OP_SHR=0b0000100000000000,
- OP_NOT=0b0001000000000000,
- OP_CPR=0b0010000000000000,
- OP_PUT=0b0100000000000000,
- OP_GET=0b1000000000000000;
-