BitwiseBigInt extension

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 and other.
bitwiseOr(Expression<BigInt> other) Expression<BigInt>
Returns the bitwise-or operation between this and other.

Operators

operator ~() Expression<BigInt>
Flips all bits in this value (turning 0 to 1 and vice-versa) and returns the result.