The OpenD Programming Language

BigUIntView.toStringImpl

struct BigUIntView(W)
@safe @safe pure nothrow @nogc
static if(isMutable!W && W.sizeof >= 4)
size_t
toStringImpl
(
C
)
(
scope C[] str
)
if (
__traits(isUnsigned, W)
)

Parameters

str C[]

string buffer, the tail paer Precondition: mutable number with word size at least 4 bytes Postconditoin: the number is destroyed

Return Value

Type: size_t

last N bytes used in the buffer

Meta