MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / int_value

Method int_value

tests/autotester/json11.hpp:368–368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

366class JsonInt final : public Value<Json::NUMBER, int> {
367 double number_value() const override { return m_value; }
368 int int_value() const override { return m_value; }
369 bool equals(const JsonValue * other) const override { return m_value == other->number_value(); }
370 bool less(const JsonValue * other) const override { return m_value < other->number_value(); }
371public:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected