Logo

Programming-Idioms

History of Idiom 55 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-08-19, 15:45:48

Version 8

2015-08-20, 14:44:38

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Imports
import std.conv;
Code
string s = to!string(i);