mirror of
https://github.com/shadps4-emu/ext-fmt.git
synced 2024-12-02 23:37:24 +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
|
||||
---------
|
||||
|
||||
.. doxygenfunction:: fmt::bin
|
||||
|
||||
.. doxygenfunction:: fmt::oct
|
||||
|
||||
.. doxygenfunction:: fmt::hex
|
||||
@ -115,7 +117,8 @@ The general form of a *standard format specifier* is:
|
||||
sign: "+" | "-" | " "
|
||||
width: `integer`
|
||||
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
|
||||
of a fill character is signaled by the character following it, which must be
|
||||
|
Loading…
Reference in New Issue
Block a user