makeString overloads
Declared in <bdljsn_json.h>
Same as the related overload above for makeString.
void
makeString(std::string_view const& string);
» more...
Replace this value with a string copied from string.
void
makeString(char const* string);
» more...
Replace this value with a string moved from string.
template<class t_STRING_TYPE>
void
makeString(BloombergLP::bslmf::MovableRef_Deduced<t_STRING_TYPE> string)
requires bsl::is_same<t_STRING_TYPE,
bsl::string>::value;
» more...
| Name | Description |
|---|---|
| string | UTF-8 string value to store |