asInt32List method

Stream<Int32List> asInt32List()

Creates Int32List views over the underlying data buffer, see ByteBuffer.asInt32List for details.

Implementation

Stream<Int32List> asInt32List() => map((input) =>
    input.buffer.asInt32List(input.offsetInBytes, input.lengthInBytes));