asFloat64List method

Stream<Float64List> asFloat64List()

Creates Float64List views over the underlying data buffer, see ByteBuffer.asFloat64List for details.

Implementation

Stream<Float64List> asFloat64List() => map((input) =>
    input.buffer.asFloat64List(input.offsetInBytes, input.lengthInBytes));