jbeder / yaml-cpp

A YAML parser and emitter in C++
MIT License
4.91k stars 1.77k forks source link

Is the key of a node can be modified? #1291

Closed yuzu-ogura closed 5 days ago

yuzu-ogura commented 5 days ago

node["c"] = "1"; node["b"] = "2"; node["a"] = "3";

can I modify the same node node["c"] = "1" to node["a"] = "1"

jbeder commented 5 days ago

Stack Overflow