MemoryStream.read

Reads multiple values of type T from the stream.

  1. T read()
  2. T[] read(size_t count)
    class MemoryStream
    final
    T[]
    read
    (
    T
    )
    (
    size_t count
    )
  3. T read()
  4. T read()
  5. T[] read(size_t count)

Parameters

T

The type of data to be read.

count size_t

The number of values to read from the stream.

Return Value

Type: T[]

An array of values read from the stream.

Meta