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

Function GetUint64

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

Source from the content-addressed store, hash-verified

1688 unsigned GetUint() const { RAPIDJSON_ASSERT(data_.f.flags & kUintFlag); return data_.n.u.u; }
1689 int64_t GetInt64() const { RAPIDJSON_ASSERT(data_.f.flags & kInt64Flag); return data_.n.i64; }
1690 uint64_t GetUint64() const { RAPIDJSON_ASSERT(data_.f.flags & kUint64Flag); return data_.n.u64; }
1691
1692 //! Get the value as double type.
1693 /*! \note If the value is 64-bit integer type, it may lose precision. Use \c IsLosslessDouble() to check whether the converison is lossless.

Callers 1

IsLosslessDoubleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected