mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 21:16:56 +00:00
Expand example.
This commit is contained in:
parent
5af2162acb
commit
257b2106b3
@ -59,7 +59,8 @@ Format can be used as a safe portable replacement to ``itoa``:
|
|||||||
.. code-block:: c++
|
.. code-block:: c++
|
||||||
|
|
||||||
fmt::Writer w;
|
fmt::Writer w;
|
||||||
w << 42; // replaces itoa(42, buffer, 10)
|
w << 42; // replaces itoa(42, buffer, 10)
|
||||||
|
w << fmt::hex(42); // replaces itoa(42, buffer, 16)
|
||||||
// access the string using w.str() or w.c_str()
|
// access the string using w.str() or w.c_str()
|
||||||
|
|
||||||
An object of any user-defined type for which there is an overloaded
|
An object of any user-defined type for which there is an overloaded
|
||||||
|
Loading…
Reference in New Issue
Block a user