mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 12:14:26 +00:00
Document to_wstring
This commit is contained in:
parent
3c0f8c2601
commit
ad23270ec7
@ -153,6 +153,8 @@ Utilities
|
|||||||
|
|
||||||
.. doxygenfunction:: fmt::to_string(const T&)
|
.. doxygenfunction:: fmt::to_string(const T&)
|
||||||
|
|
||||||
|
.. doxygenfunction:: fmt::to_wstring(const T&)
|
||||||
|
|
||||||
.. doxygenclass:: fmt::basic_memory_buffer
|
.. doxygenclass:: fmt::basic_memory_buffer
|
||||||
:protected-members:
|
:protected-members:
|
||||||
:members:
|
:members:
|
||||||
|
@ -3390,6 +3390,11 @@ std::string to_string(const T &value) {
|
|||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
\rst
|
||||||
|
Converts *value* to ``std::wstring`` using the default format for type *T*.
|
||||||
|
\endrst
|
||||||
|
*/
|
||||||
template <typename T>
|
template <typename T>
|
||||||
std::wstring to_wstring(const T &value) {
|
std::wstring to_wstring(const T &value) {
|
||||||
std::wstring str;
|
std::wstring str;
|
||||||
|
Loading…
Reference in New Issue
Block a user