Deprecated. It will be removed in March 2014. Please use std.string.format, std.conv.to, or std.conv.parse instead of these templates (which one would depend on which template is being replaced.) They now work in CTFE, and these templates are very inefficient.
Templates with which to do compile-time manipulation of strings.
Deprecated. Please use std.string.format instead. It now works in CTFE, and this template is very inefficient.
Formats constants into a string at compile time. Analogous to std.string.format.
import std.metastrings; import std.stdio; void main() { string s = Format!("Arg %s = %s", "foo", 27); writefln(s); // "Arg foo = 27" }
Deprecated. Please use std.conv.format instead. It now works in CTFE, and this template is very inefficient.
Convert constant argument to a string.
Deprecated. Please use std.conv.parse instead. It now works in CTFE, and this template is very inefficient.
Parse unsigned integer literal from the start of string s.
Deprecated. Please use std.conv.parse instead. It now works in CTFE, and this template is very inefficient.
Parse integer literal optionally preceded by '-' from the start of string s.