Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
3eff8f94
Commit
3eff8f94
authored
Jun 05, 2019
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update docs
parent
469a4bbd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
doc/api.rst
doc/api.rst
+5
-5
No files found.
doc/api.rst
View file @
3eff8f94
...
...
@@ -40,7 +40,7 @@ participate in an overload resolution if the latter is not a string.
.. _format:
.. doxygenfunction:: format(const S&, const Args&...)
.. doxygenfunction:: vformat(const S&, basic_format_args<
typename buffer_context<Char>::type
>)
.. doxygenfunction:: vformat(const S&, basic_format_args<
buffer_context<Char>
>)
.. _print:
...
...
@@ -183,7 +183,7 @@ You can also write a formatter for a hierarchy of classes::
Output Iterator Support
-----------------------
.. doxygenfunction:: fmt::format_to(OutputIt, const S
&, const Args
&...)
.. doxygenfunction:: fmt::format_to(OutputIt, const S
&, const Args
&...)
.. doxygenfunction:: fmt::format_to_n(OutputIt, std::size_t, string_view, const Args&...)
.. doxygenstruct:: fmt::format_to_n_result
:members:
...
...
@@ -200,7 +200,7 @@ The following user-defined literals are defined in ``fmt/format.h``.
Utilities
---------
.. doxygen
class
:: fmt::is_char
.. doxygen
struct
:: fmt::is_char
.. doxygentypedef:: fmt::char_t
...
...
@@ -357,7 +357,7 @@ user-defined types that have overloaded ``operator<<``::
std::string s = fmt::format("The date is {}", date(2012, 12, 9));
// s == "The date is 2012-12-9"
.. doxygenfunction:: print(std::basic_ostream<
fmt::char_t<S>
>&, const S&, const Args&...)
.. doxygenfunction:: print(std::basic_ostream<
Char
>&, const S&, const Args&...)
.. _printf-api:
...
...
@@ -375,6 +375,6 @@ argument type doesn't match its format specification.
.. doxygenfunction:: fprintf(std::FILE *, const S&, const Args&...)
.. doxygenfunction:: fprintf(std::basic_ostream<
fmt::char_t<S>
>&, const S&, const Args&...)
.. doxygenfunction:: fprintf(std::basic_ostream<
Char
>&, const S&, const Args&...)
.. doxygenfunction:: sprintf(const S&, const Args&...)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment