Constructs an $(D_PSYMBOL Address6) from an array containing raw bytes in network byte order and scope ID.
The address as an unsigned integer in host byte order.
Scope ID.
const ubyte[16] expected = [ 0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 8 ]; auto actual = Address6(expected, 1); assert(actual.toBytes() == expected); assert(actual.scopeID == 1);
See Implementation
Constructs an $(D_PSYMBOL Address6) from an array containing raw bytes in network byte order and scope ID.