MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / Bool

Method Bool

rapidjson/schema.h:172–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170
171 bool Null() { return WriteType(kNullType); }
172 bool Bool(bool b) { return WriteType(b ? kTrueType : kFalseType); }
173 bool Int(int i) { Number n; n.u.i = i; n.d = static_cast<double>(i); return WriteNumber(n); }
174 bool Uint(unsigned u) { Number n; n.u.u = u; n.d = static_cast<double>(u); return WriteNumber(n); }
175 bool Int64(int64_t i) { Number n; n.u.i = i; n.d = static_cast<double>(i); return WriteNumber(n); }

Callers 1

SerializeFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected