asUint8ClampedList method

Stream<Uint8ClampedList> asUint8ClampedList()

Creates Uint8ClampedList views over the underlying data buffer, see ByteBuffer.asUint8ClampedList for details.

Implementation

Stream<Uint8ClampedList> asUint8ClampedList() => map((input) => input.buffer
    .asUint8ClampedList(input.offsetInBytes, input.lengthInBytes));