Google

Go to the first, previous, next, last section, table of contents.


iand, ior, ixor

iand(i1,i2)
:: bit ¤´¤È¤Î and
ior(i1,i2)
:: bit ¤´¤È¤Î or
ixor(i1,i2)
:: bit ¤´¤È¤Î xor
return
À°¿ô
i1,i2
À°¿ô
  • À°¿ô i1, i2 ¤ÎÀäÂÐÃͤò bit Îó¤È¤ß¤Æ±é»»¤¹¤ë.
  • °ú¿ô¤ÎÉ乿¤Ï̵»ë¤·, ÈóÉé¤ÎÃͤòÊÖ¤¹.
[0] ctrl("hex",1);
0x1
[1] iand(0xeeeeeeeeeeeeeeee,0x2984723234812312312);
0x4622224802202202
[2] ior(0xa0a0a0a0a0a0a0a0,0xb0c0b0b0b0b0b0b);
0xabacabababababab
[3] ixor(0xfffffffffff,0x234234234234);
0x2cbdcbdcbdcb
»²¾È
section ishift.


Go to the first, previous, next, last section, table of contents.