blob: 076ef9c8c569fb428ff63bd3985bb81c81619277 [file] [log] [blame]
int bit_not(int x) { return ~x; }
int remainder(int x) { return x % 2; }
int remainder_eq(int x) { return x %= 2;}
int shl (int x) { return x << 1; }
int shl_eq(int x) { return x <<= 1; }
int shr (int x) { return x >> 1; }
int shr_eq(int x) { return x >>= 1; }
int bit_and (int x) { return x & 1; }
int bit_and_eq(int x) { return x &= 1; }
int bit_or (int x) { return x | 1; }
int bit_or_eq (int x) { return x |= 1; }
int bit_xor (int x) { return x ^ 1; }
int bit_xor_eq(int x) { return x ^= 1; }
/*%%*
operator '~' is not allowed
operator '%' is not allowed
operator '%=' is not allowed
operator '<<' is not allowed
operator '<<=' is not allowed
operator '>>' is not allowed
operator '>>=' is not allowed
operator '&' is not allowed
operator '&=' is not allowed
operator '|' is not allowed
operator '|=' is not allowed
operator '^' is not allowed
operator '^=' is not allowed
*%%*/