Definition at line 985 of file yaml_decoders.cc.
◆ decode()
Definition at line 986 of file yaml_decoders.cc.
987 {
988 assert(node.Type() == NodeType::Map || node.Type() == NodeType::Scalar);
989
990 if (node.Type() == NodeType::Scalar) {
991
992
994 }
995 else {
996 for (const auto &it : node) {
997 auto key = it.first.as<std::string>();
998 if (key == "default") {
1000 }
1001 else {
1002 try {
1003 auto index = stoul(key);
1004 rhs.argument_hints[index] =
1006 }
1007 catch (std::exception &e) {
1008 return false;
1009 }
1010 }
1011 }
1012 }
1013
1014 return true;
1015 }
The documentation for this struct was generated from the following file: