Address4.this

Constructs an $(D_PSYMBOL Address4) from an unsigned integer in host byte order.

struct Address4
@nogc nothrow pure @trusted
this
(
uint address
)

Parameters

address uint

The address as an unsigned integer in host byte order.

Examples

assert(Address4(0x00202000U).toUInt() == 0x00202000U);

Meta