Namespace of utilities.
More...
|
namespace | impl |
| Namespace of internal implementations.
|
◆ copy_string_to_iterator()
template<typename Iterator>
Iterator msgpack_rpc::util::copy_string_to_iterator |
( |
std::string_view | string, |
|
|
Iterator | iterator ) |
|
inline |
Copy a string to a range of an iterator.
- Template Parameters
-
Iterator | Type of the iterator of the output range. |
- Parameters
-
[in] | string | String to copy from. |
[in] | iterator | Iterator of the range to copy to. |
- Returns
- Iterator after the copy.
Definition at line 36 of file copy_string_to_iterator.h.
◆ format_msgpack_object()
Format an object in msgpack library using fmt library.
- Parameters
-
[in] | object | Object in msgpack library. |
- Returns
- Proxy object to use in fmt library.
Definition at line 50 of file format_msgpack_object.cpp.
◆ format_msgpack_object_to()
template<typename Iterator>
Iterator msgpack_rpc::util::format_msgpack_object_to |
( |
Iterator | iterator, |
|
|
const msgpack::object & | object ) |
|
inline |
Format an object in msgpack library.
- Template Parameters
-
Iterator | Type of the output iterator of the formatted string. |
- Parameters
-
[out] | iterator | Output iterator of the formatted string. |
[in] | object | Object in msgpack library. |
- Returns
- Output iterator after formatting the object.
Definition at line 254 of file format_msgpack_object_to.h.
◆ format_msgpack_object_to_string()
std::string msgpack_rpc::util::format_msgpack_object_to_string |
( |
const msgpack::object & | object | ) |
|
|
nodiscard |