golang Bitwise 비트연산자

less than 1 minute read

비트 연산자 Bitwise

&    bitwise AND
 |   bitwise OR
 ^   bitwise XOR
&^   AND NOT
<<   left shift
>>   right shift

참고 : Bit Hacking with Go

Categories:

Updated:

Comments