MCPcopy Create free account
hub / github.com/bytedance/sonic-cpp / Uint

Method Uint

include/sonic/dom/schema_handler.h:136–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134 }
135
136 sonic_force_inline bool Uint(uint64_t val) noexcept {
137 if (cur_node_) {
138 cur_node_->SetUint64(val);
139 return true;
140 }
141 SONIC_ADD_NODE();
142 new (&st_[np_ - 1]) NodeType(val);
143 return true;
144 }
145
146 sonic_force_inline bool Int(int64_t val) noexcept {
147 if (cur_node_) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected