BinaryReader.read

Reads specified values from input stream.

  1. void read(ref T value)
  2. T read()
  3. void read(ref T values)
    struct BinaryReader(Range = ubyte[])
    void
    read
    (
    T...
    )
    (
    ref T values
    )
    if (
    T.length > 1
    )
    if (
    isInputRange!Range &&
    is(ElementType!Range == ubyte)
    )

Throws

DecodeException

Meta