undead.metastrings

Templates with which to do compile-time manipulation of strings.

Members

Templates

Format
template Format(A...)

Formats constants into a string at compile time. Analogous to std.string.format.

FormatString
template FormatString(const(char)[] F, A...)
Undocumented in source.
parseInteger
template parseInteger(const(char)[] s)

Parse integer literal optionally preceded by '-' from the start of string s.

parseUinteger
template parseUinteger(const(char)[] s)

Parse unsigned integer literal from the start of string s.

toStringNow
template toStringNow(ulong v)
template toStringNow(long v)
template toStringNow(uint U)
template toStringNow(int I)
template toStringNow(bool B)
template toStringNow(string S)
template toStringNow(char C)

Convert constant argument to a string.

Meta

License

<a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.

Authors

Walter Bright, Don Clugston