asFloat32List method

Stream<Float32List> asFloat32List()

Creates Float32List views over the underlying data buffer, see ByteBuffer.asFloat32List for details.

Implementation

Stream<Float32List> asFloat32List() => map((input) =>
    input.buffer.asFloat32List(input.offsetInBytes, input.lengthInBytes));