AtomicStream.peek

Peeks an array of type T from the stream without advancing the stream position.

  1. T peek()
  2. T[] peek(size_t count)
  3. T peek()
    class AtomicStream
    final shared
    T
    peek
    (
    T : U[]
    U
    )
    ()

Parameters

T

The type of data to peek.

Return Value

Type: T

An array peeked from the stream.

Meta