digitalmars.D.learn - conv.to for radixes
- Andrej Mitrovic <andrej.mitrovich gmail.com> Nov 22 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
}
Nov 22 2011








Andrej Mitrovic <andrej.mitrovich gmail.com>