UInt.toString

  1. immutable(C)[] toString()
    struct UInt(size_t size)
    const @safe pure nothrow
    immutable(C)[]
    toString
    (
    C = char
    )
    ()
    if (
    isSomeChar!C &&
    isMutable!C
    )
    if (
    size % (size_t.sizeof * 8) == 0 &&
    size >= (size_t.sizeof * 8)
    )
  2. void toString(W w)

Examples

auto str = "34010447314490204552169750449563978034784726557588085989975288830070948234680";
auto integer = UInt!256(str);
assert(integer.toString == str);

integer = UInt!256.init;
assert(integer.toString == "0");

Meta