conv.to for radixes

Andrej Mitrovic andrej.mitrovich at gmail.com
Tue Nov 22 19:39:37 PST 2011


Is there any special reason why conv.to doesn't work with radixes, and
we have to use parse instead?

import std.conv;
import std.stdio;

void main()
{
    writeln(parse!int("ff", 16));  // ok
    writeln(to!int("ff", 16));     // NG
}


More information about the Digitalmars-d-learn mailing list