BitwiseBigInt extension Null safety
Extensions providing bitwise operators ~, on integer expressions that are represented as a Dart BigInt.
- on
Methods
-
bitwiseAnd(
Expression< BigInt> other) → Expression<BigInt> -
Returns the bitwise-and operation between
this
andother
. -
bitwiseOr(
Expression< BigInt> other) → Expression<BigInt> -
Returns the bitwise-or operation between
this
andother
.
Operators
-
operator ~(
) → Expression< BigInt> -
Flips all bits in this value (turning
0
to1
and vice-versa) and returns the result.