0.6.1
C++ to UML diagram generator based on Clang
Loading...
Searching...
No Matches
Static Public Member Functions | List of all members
YAML::convert< inja::json > Struct Reference

Detailed Description

Definition at line 1106 of file yaml_decoders.cc.

Static Public Member Functions

static bool parse_scalar (const YAML::Node &node, inja::json &rhs)
 
static bool decode (const Node &node, inja::json &rhs)
 

Member Function Documentation

◆ decode()

static bool YAML::convert< inja::json >::decode ( const Node &  node,
inja::json &  rhs 
)
inlinestatic

Definition at line 1134 of file yaml_decoders.cc.

1135 {
1136 switch (node.Type()) {
1137 case YAML::NodeType::Null:
1138 break;
1139 case YAML::NodeType::Scalar:
1140 parse_scalar(node, rhs);
1141 break;
1142 case YAML::NodeType::Sequence:
1143 for (auto &&array_element : node)
1144 rhs.emplace_back(array_element.as<inja::json>());
1145 break;
1146 case YAML::NodeType::Map:
1147 for (auto &&it : node)
1148 rhs[it.first.as<std::string>()] = it.second.as<inja::json>();
1149 break;
1150 default:
1151 break;
1152 }
1153 return true;
1154 }

◆ parse_scalar()

static bool YAML::convert< inja::json >::parse_scalar ( const YAML::Node &  node,
inja::json &  rhs 
)
inlinestatic

Definition at line 1107 of file yaml_decoders.cc.

1108 {
1109 int i{};
1110 double d{};
1111 bool b{};
1112 std::string s;
1113
1114 if (YAML::convert<int>::decode(node, i)) {
1115 rhs = i;
1116 return true;
1117 }
1118 if (YAML::convert<double>::decode(node, d)) {
1119 rhs = d;
1120 return true;
1121 }
1122 if (YAML::convert<bool>::decode(node, b)) {
1123 rhs = b;
1124 return true;
1125 }
1126 if (YAML::convert<std::string>::decode(node, s)) {
1127 rhs = s;
1128 return true;
1129 }
1130
1131 return false;
1132 }

The documentation for this struct was generated from the following file: