fromString overloads

Synopses

Declared in <balm_publicationtype.h>

Load into the specified result the enumerator matching the specified string.

static
int
fromString(
    Value* result,
    std::string_view const& string);

Load into the specified result the enumerator matching the specified string of the specified stringLength.

static
int
fromString(
    Value* result,
    char const* string,
    int stringLength);

Return Value

0 on success, and a non‐zero value with no effect on result otherwise (i.e., string does not match any enumerator)

Parameters

Name

Description

result

receives the enumerator on success

string

string representation of the enumerator

stringLength

length of string

Created with MrDocs