BinaryUint64HiLo extension

A collection of binary methods to be applied to elements of Uint32List.

The methods here are roughly the same as those on BinaryInt, except that they operate on an index of the underlying list, and infer the length property based on the data type of the underlying list (i.e. Uint32List has a length of 32).

See BinaryList for more extension methods that operate on any List<int>.

on

Properties

hi int
"Hi" (upper) bits.
getter/setter pair
lo int
"Lo" (lower) bits.
getter/setter pair

Methods

equals(Uint32List b) bool
Returns whether structurally equal to b.
toInt() int
Returns, truncated if necessary, to fit as an int.

Operators

operator &(Uint32List b) Uint32List
Returns a new Uint32List with bits compared with b logical and (&).
operator +(Uint32List b) Uint32List
Returns a new Uint32List with bits added (+) to b.
operator |(Uint32List b) Uint32List
Returns a new Uint32List with bits compared with b logical or (|).
operator ~() Uint32List
Returns a new Uint32List with bits logically negated (~).