toBase10

Undocumented in source. Be warned that the author may not have intended to support it.
  1. String toBase10(NumT num)
    toBase10
    (
    NumT
    )
    (
    NumT num
    )
  2. char[] toBase10(NumT num_, IntToCharBuffer buffer)

Examples

assert((cast(byte)127).toBase10!byte == "127");
assert((cast(byte)-128).toBase10!byte == "-128");

Meta