mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 12:14:26 +00:00
Add fmt::bin to the docs. Separate integer type specifiers because the list of types is too long.
This commit is contained in:
parent
a1bbd09548
commit
04c2b05340
@ -29,6 +29,8 @@ String Formatting API
|
|||||||
Write API
|
Write API
|
||||||
---------
|
---------
|
||||||
|
|
||||||
|
.. doxygenfunction:: fmt::bin
|
||||||
|
|
||||||
.. doxygenfunction:: fmt::oct
|
.. doxygenfunction:: fmt::oct
|
||||||
|
|
||||||
.. doxygenfunction:: fmt::hex
|
.. doxygenfunction:: fmt::hex
|
||||||
@ -115,7 +117,8 @@ The general form of a *standard format specifier* is:
|
|||||||
sign: "+" | "-" | " "
|
sign: "+" | "-" | " "
|
||||||
width: `integer`
|
width: `integer`
|
||||||
precision: `integer` | "{" `arg_index` "}"
|
precision: `integer` | "{" `arg_index` "}"
|
||||||
type: "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "o" | "p" | s" | "x" | "X"
|
type: `int_type` | "c" | "e" | "E" | "f" | "F" | "g" | "G" | "p" | s"
|
||||||
|
int_type: "b" | "B" | "d" | "o" | "x" | "X"
|
||||||
|
|
||||||
The *fill* character can be any character other than '{' or '}'. The presence
|
The *fill* character can be any character other than '{' or '}'. The presence
|
||||||
of a fill character is signaled by the character following it, which must be
|
of a fill character is signaled by the character following it, which must be
|
||||||
|
Loading…
Reference in New Issue
Block a user