how-to-do-bitwise-operations-in-dart
Installation
SKILL.md
How to do Bitwise operations in Dart
In Dart it is possible to do Bitwise Operations with int and bool types.
AND
Checks if the left and right side are both true. Learn more.
// int
print(0 & 1); // 0
print(1 & 0); // 0
print(1 & 1); // 1
print(0 & 0); // 0