| 564 | } |
| 565 | |
| 566 | std::string cfg::node::to_string() const |
| 567 | { |
| 568 | YAML::Emitter out; |
| 569 | cfg::encode(out, *this); |
| 570 | |
| 571 | return {out.c_str(), out.size()}; |
| 572 | } |
| 573 | |
| 574 | nlohmann::ordered_json cfg::node::to_json() const |
| 575 | { |
no test coverage detected