jmespath.cpp
C++ implementation of JMESPath, a query language for JSON http://jmespath.org
|
The AppendUtf8Action class is a functor for appending UTF-32 characters to UTF-8 encoded strings. More...
#include <appendutf8action.h>
Public Types | |
using | result_type = void |
The action's result type. More... | |
Public Member Functions | |
result_type | operator() (String &utf8String, UnicodeChar utf32Char) const |
Appends the utf32Char character to the utf8String encoded in UTF-8. More... | |
The AppendUtf8Action class is a functor for appending UTF-32 characters to UTF-8 encoded strings.
using jmespath::parser::AppendUtf8Action::result_type = void |
The action's result type.
|
inline |
Appends the utf32Char character to the utf8String encoded in UTF-8.
[out] | utf8String | The string where the encoded value of the utf32Char will be appended. |
[in] | utf32Char | The input character encoded in UTF-32 |