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

Method Bool

rapidjson/document.h:2376–2376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2374 // Implementation of Handler
2375 bool Null() { new (stack_.template Push<ValueType>()) ValueType(); return true; }
2376 bool Bool(bool b) { new (stack_.template Push<ValueType>()) ValueType(b); return true; }
2377 bool Int(int i) { new (stack_.template Push<ValueType>()) ValueType(i); return true; }
2378 bool Uint(unsigned i) { new (stack_.template Push<ValueType>()) ValueType(i); return true; }
2379 bool Int64(int64_t i) { new (stack_.template Push<ValueType>()) ValueType(i); return true; }

Callers 1

AcceptFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected