readFins

Takes an input range of ubyte and converts the first T.sizeof words to T. The array is consumed.

T
readFins
(
T
R
)
(
ref R input
)
if (
(isInputRange!R) &&
is(ElementType!R : const ubyte)
)

Parameters

T

The type to convert the first T.sizeof bytes

input R

The input range of ubyte to convert

Meta