asInt64List method

Stream<Int64List> asInt64List()

Creates Int64List views over the underlying data buffer, see ByteBuffer.asInt64List for details.

Implementation

Stream<Int64List> asInt64List() => map((input) =>
    input.buffer.asInt64List(input.offsetInBytes, input.lengthInBytes));