getQuotedString overloads

Synopses

Declared in <baljsn_parserutil.h>

Load a quoted JSON string into value.

static
int
getQuotedString(
    bsl::string* value,
    std::string_view const& data);

Load into the specified value the string value in the specified data. The string must be begin and end in " characters which are not part of the resulting value. Return 0 on success and a non‐zero value otherwise.

static
int
getQuotedString(
    std::pmr::string* value,
    std::string_view const& data);

Load into the specified value the string value in the specified data. The string must be begin and end in " characters which are not part of the resulting value. Return 0 on success and a non‐zero value otherwise.

static
int
getQuotedString(
    std::string* value,
    std::string_view const& data);

Created with MrDocs