MCPcopy Create free account
hub / github.com/antmachineintelligence/mtgbmcode / operator<

Method operator<

python-package/compile/src/io/json11.cpp:312–319  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310}
311
312bool Json::operator< (const Json &other) const {
313 if (m_ptr == other.m_ptr)
314 return false;
315 if (m_ptr->type() != other.m_ptr->type())
316 return m_ptr->type() < other.m_ptr->type();
317
318 return m_ptr->less(other.m_ptr.get());
319}
320
321/* * * * * * * * * * * * * * * * * * * *
322 * Parsing

Callers

nothing calls this directly

Calls 3

typeMethod · 0.45
lessMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected