Skip to content

dart:typed_data

Lists that efficiently handle fixed sized data (for example, unsigned 8 byte integers) and SIMD numeric types.

To use this library in your code:

dart
import 'dart:typed_data';

Classes

ClassDescription
ByteBufferA sequence of bytes underlying a typed data object.
ByteDataA fixed-length, random-access sequence of bytes that also provides random and unaligned access to the fixed-width integers and floating point numbers represented by those bytes.
BytesBuilderBuilds a list of bytes, allowing bytes and lists of bytes to be added at the end.
EndianEndianness of number representation.
Float32ListA fixed-length list of IEEE 754 single-precision binary floating-point numbers that is viewable as a TypedData.
Float32x4Four 32-bit floating point values.
Float32x4ListA fixed-length list of Float32x4 numbers that is viewable as a TypedData.
Float64ListA fixed-length list of IEEE 754 double-precision binary floating-point numbers that is viewable as a TypedData.
Float64x2Float64x2 immutable value type and operations.
Float64x2ListA fixed-length list of Float64x2 numbers that is viewable as a TypedData.
Int16ListA fixed-length list of 16-bit signed integers that is viewable as a TypedData.
Int32ListA fixed-length list of 32-bit signed integers that is viewable as a TypedData.
Int32x4Int32x4 and operations.
Int32x4ListA fixed-length list of Int32x4 numbers that is viewable as a TypedData.
Int64ListA fixed-length list of 64-bit signed integers that is viewable as a TypedData.
Int8ListA fixed-length list of 8-bit signed integers.
TypedDataA typed view of a sequence of bytes.
TypedDataList<E>A TypedData fixed-length List-view on the bytes of buffer.
Uint16ListA fixed-length list of 16-bit unsigned integers that is viewable as a TypedData.
Uint32ListA fixed-length list of 32-bit unsigned integers that is viewable as a TypedData.
Uint64ListA fixed-length list of 64-bit unsigned integers that is viewable as a TypedData.
Uint8ClampedListA fixed-length list of 8-bit unsigned integers.
Uint8ListA fixed-length list of 8-bit unsigned integers.