- Kotlin Programming Cookbook
- Aanand Shekhar Roy Rashi Karanpuria
- 39字
- 2025-04-04 17:32:31
Getting ready
Here's the complete list of bitwise operations (available for Int and Long only):
- shr(bits): signed shift right (Java's >>)
- ushr(bits): unsigned shift right (Java's >>>)
- and(bits): bitwise and
- or(bits): bitwise or
- xor(bits): bitwise xor
- inv(): bitwise inversion