bytes

Bytes Instantiator.

bytes
(
size_t value
)

Examples

immutable a = bytes(1);
immutable b = bytes(1);
immutable c = a + b;
assert(c == 2);
assert(1.bytes == 1);

Meta