Datatype that represents YAML with substituted variables.
Definition in file yaml_config.hpp.
|
|
bool | yaml_config::Parse (const YamlConfig &value, formats::parse::To< bool >) |
| |
|
int64_t | yaml_config::Parse (const YamlConfig &value, formats::parse::To< int64_t >) |
| |
|
uint64_t | yaml_config::Parse (const YamlConfig &value, formats::parse::To< uint64_t >) |
| |
|
double | yaml_config::Parse (const YamlConfig &value, formats::parse::To< double >) |
| |
|
std::string | yaml_config::Parse (const YamlConfig &value, formats::parse::To< std::string >) |
| |
| std::chrono::seconds | yaml_config::Parse (const YamlConfig &value, formats::parse::To< std::chrono::seconds >) |
| | Parses duration from string, understands suffixes: ms, s, m, h, d.
|
| |
| std::chrono::milliseconds | yaml_config::Parse (const YamlConfig &value, formats::parse::To< std::chrono::milliseconds >) |
| | Parses duration from string, understands suffixes: ms, s, m, h, d.
|
| |
| formats::json::Value | yaml_config::Parse (const YamlConfig &value, formats::parse::To< formats::json::Value >) |
| | Converts YAML to JSON.
|
| |
| YamlConfig | yaml_config::Parse (const YamlConfig &value, formats::parse::To< YamlConfig >) |
| | Converts YAML to YAML. Returns self.
|
| |
| formats::yaml::Value | yaml_config::Parse (const YamlConfig &value, formats::parse::To< formats::yaml::Value >) |
| | Flattens a YamlConfig, applying all of its special syntax.
|
| |
| template<typename Value> |
| ItemsWrapper< Value > | yaml_config::Items (Value &&value) |
| | Wrapper for handy python-like iteration over a map.
|
| |