std.format.spec

This is a submodule of std.format.

It centers around a struct called FormatSpec, which takes a format string and provides tools for parsing this string. Additionally this module contains a function singleSpec which helps treating a single format specifier.

Members

Functions

enforceValidFormatSpec
deprecated void enforceValidFormatSpec(FormatSpec!Char f)
Undocumented in source. Be warned that the author may not have intended to support it.
singleSpec
FormatSpec!Char singleSpec(Char[] fmt)

Helper function that returns a FormatSpec for a single format specifier.

Structs

FormatSpec
struct FormatSpec(Char)

A general handler for format strings.

Templates

FormatSpec
template FormatSpec(Char)
Undocumented in source.

Meta