Logo

Programming-Idioms

  • Lisp
  • D
import std.conv;
auto i = s.to!int;

The useful to function can convert just about anything to something else. It will throw on a non-integral input string.
(setf i (parse-integer s))
I : Integer := Integer'Value (s);

New implementation...