jive.layout
Based on tango.text.convert.Layout by Kris
Original copyright notice at the end of the file
License:
zlib
Authors:
Kris, Zygfryd (aka Hxal)
- uint
convert
(CharT,T...)(uint delegate(CharT[]) sink, CharT[] format, T args);
- CharT[]
sprint
(CharT,T...)(CharT[] output, CharT[] format, T args);
- CharT[]
sformat
(CharT,T...)(CharT[] format, T args);
- CharT[]
sformatbuf
(CharT,T...)(size_t bufsize, CharT[] format, T args);
- uint
convertOne
(CharT,T)(uint delegate(CharT[]) sink, CharT[] fmt, T arg);
- template
LayoutFor
(CharT)
- Provides the possibility of explicit CharT definition.
Example:
LayoutFor
!(char).sformat ("{} {}", arg1, arg2)
- template
convert
(T...)
- uint
convert
(uint delegate(CharT[]) sink, CharT[] format, T args);
- template
sprint
(T...)
- CharT[]
sprint
(CharT[] output, CharT[] format, T args);
- template
sformat
(T...)
- CharT[]
sformat
(CharT[] format, T args);
- template
sformatbuf
(T...)
- CharT[]
sformatbuf
(size_t bufsize, CharT[] format, T args);
|