NetworkOrder.this

Constructs a new range.

T can be any unsigned type but value cannot be larger than the maximum can be stored in L bytes. Otherwise an assertion failure will be caused.

struct NetworkOrder(uint L)
this
(
T
)
()
if (
L > ubyte.sizeof &&
L <= ulong.sizeof
)

Parameters

T

Value type.

value T

The value should be represented by this range.

Precondition: value <= (2 ^^ (L * 8)) - 1.

Meta