Definition at line 544 of file yaml_decoders.cc.
|
static bool | decode (const Node &node, string_or_regex &rhs) |
|
◆ decode()
static bool YAML::convert< string_or_regex >::decode |
( |
const Node & |
node, |
|
|
string_or_regex & |
rhs |
|
) |
| |
|
inlinestatic |
Definition at line 545 of file yaml_decoders.cc.
546 {
547 using namespace std::string_literals;
548 if (node.IsMap()) {
549 auto pattern = node["r"].as<std::string>();
550 auto rx = std::regex(pattern);
552 }
553 else {
555 }
556
557 return true;
558 }
The documentation for this struct was generated from the following file: