streams.types.array

A collection of array-backed streams for in-memory reading and writing.

Members

Functions

inputStreamFor
ArrayInputStream!T inputStreamFor(T[] array)

Creates and returns an array input stream wrapped around the given array of elements.

Structs

ArrayInputStream
struct ArrayInputStream(DataType)

An input stream that reads from an array of items.

ArrayOutputStream
struct ArrayOutputStream(DataType)

An output stream that writes to an internal array. The resulting array can be obtained with toArray().

Meta