Produces a byte array containing this address in network byte order.
This address as raw bytes in network byte order.
auto actual = address6("1:2:3:4:5:6:7:8"); ubyte[16] expected = [0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, 6, 0, 7, 0, 8]; assert(actual.get.toBytes() == expected);
See Implementation
Produces a byte array containing this address in network byte order.