You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
unified interface, common needs (may not fit for corner cases)
efficient parsing (reading), as well as compiling (of applications)
Planned style for usage:
auto doc = parse(buf, size, DOC_JSON)->wrapper();
auto a = doc["asdf"].to_string();
auto j = doc["jkl"].to_integer();
auto fb = doc["foo"]["bar"];
for (auto x: fb.enumerable_children()) {
// ...
}
for (auto x: fb.enumerable_same_key_siblings()) {
// ...
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
SimpleDOM emphasizes on
Planned style for usage:
Check out https://github.com/alibaba/PhotonLibOS/pull/259/files for details
Beta Was this translation helpful? Give feedback.
All reactions