Uint32ListDataExtension extension
Data extension for Uint32List.
- on
Methods
-
asByteData(
) → ByteData -
Returns a ByteData of
this
buffer with the respective offset and length. -
convertToUint16List(
[Endian endian = Endian.big]) → Uint16List - Converts this instance to an Uint16List.
-
convertToUint64List(
[Endian endian = Endian.big]) → Uint64List - Converts this instance to an Uint64List.
-
convertToUint8List(
[Endian endian = Endian.big]) → Uint8List -
Converts this instance to an Uint8List with elements in
endian
ness. -
convertToUint8ListHostEndian(
) → Uint8List - Converts this instance to an Uint8List with elements in endianness of Endian.host (current buffer endianness).
-
convertToUint8ListReversedEndian(
) → Uint8List - Converts this instance to an Uint8List with elements in reversed endianness.
-
copy(
) → Uint32List -
Returns a copy of
this
instance. -
copyAsUnmodifiable(
) → Uint32List -
Returns an unmodifiable copy of
this
instance. -
reversedList(
) → Uint32List - Returns a copy of this instance as a reversed Uint32List.
-
toBits32(
[String separator = ' ']) → String - Coverts this Uint32List elements to a sequence of String of 32 bits.
-
toHex32(
[String separator = ' ']) → String - Coverts this Uint32List elements to a sequence of String of 32 bits HEX.