[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
6.2.1 iand , ior , ixor | ||
6.2.2 ishift |
[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
iand
, ior
, ixor
:: bitwise and
:: bitwise or
:: bitwise xor
integer
integer
[0] ctrl("hex",1); 0x1 [1] iand(0xeeeeeeeeeeeeeeee,0x2984723234812312312); 0x4622224802202202 [2] ior(0xa0a0a0a0a0a0a0a0,0xb0c0b0b0b0b0b0b); 0xabacabababababab [3] ixor(0xfffffffffff,0x234234234234); 0x2cbdcbdcbdcb
[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
ishift
:: bit shift
integer
integer
[0] ctrl("hex",1); 0x1 [1] ishift(0x1000000,12); 0x1000 [2] ishift(0x1000,-12); 0x1000000 [3] ixor(0x1248,ishift(1,-16)-1);
[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] |
This document was generated on December 22, 2024 using texi2html 5.0.