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

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.

Meta