|
formats::yaml::Value | FromString (const std::string &doc) |
| Parse YAML from string.
|
|
formats::yaml::Value | FromStream (std::istream &is) |
| Parse YAML from stream.
|
|
void | Serialize (const formats::yaml::Value &doc, std::ostream &os) |
| Serialize YAML to stream.
|
|
std::string | ToString (const formats::yaml::Value &doc) |
| Serialize YAML to string.
|
|
bool | Parse (const Value &value, parse::To< bool >) |
|
int64_t | Parse (const Value &value, parse::To< int64_t >) |
|
uint64_t | Parse (const Value &value, parse::To< uint64_t >) |
|
double | Parse (const Value &value, parse::To< double >) |
|
std::string | Parse (const Value &value, parse::To< std::string >) |
|
template<typename T > |
std::enable_if_t< std::is_integral< T >::value &&sizeof(T)<=sizeof(long long), Value > | Serialize (T value, formats::serialize::To< Value >) |
|