AtomicStream.peek

Peeks at the next value from the stream of type T without advancing the stream position.

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

Parameters

T

The type of data to peek.

Return Value

Type: T

The value peeked from the stream.

Meta