mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 06:21:00 +00:00
Document the 'B' type and the difference between 'b' & 'B'. Addresses part of issue https://github.com/vitaut/format/issues/5
This commit is contained in:
parent
0563aca180
commit
93ca4c98fe
@ -228,7 +228,13 @@ The available integer presentation types are:
|
|||||||
+---------+----------------------------------------------------------+
|
+---------+----------------------------------------------------------+
|
||||||
| Type | Meaning |
|
| Type | Meaning |
|
||||||
+=========+==========================================================+
|
+=========+==========================================================+
|
||||||
| ``'b'`` | Binary format. Outputs the number in base 2. |
|
| ``'b'`` | Binary format. Outputs the number in base 2. Using the |
|
||||||
|
| | ``'#'`` option with this type adds the prefix ``"0b"`` |
|
||||||
|
| | to the output value. |
|
||||||
|
+---------+----------------------------------------------------------+
|
||||||
|
| ``'B'`` | Binary format. Outputs the number in base 2. Using the |
|
||||||
|
| | ``'#'`` option with this type adds the prefix ``"0B"`` |
|
||||||
|
| | to the output value. |
|
||||||
+---------+----------------------------------------------------------+
|
+---------+----------------------------------------------------------+
|
||||||
| ``'d'`` | Decimal integer. Outputs the number in base 10. |
|
| ``'d'`` | Decimal integer. Outputs the number in base 10. |
|
||||||
+---------+----------------------------------------------------------+
|
+---------+----------------------------------------------------------+
|
||||||
|
Loading…
Reference in New Issue
Block a user