MCPcopy Create free account
hub / github.com/Tracktion/choc / operator<

Method operator<

choc/memory/choc_ObjectReference.h:67–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65 template <typename OtherObjectType> bool operator== (const OtherObjectType& other) const noexcept { return target == getPointer (other); }
66 template <typename OtherObjectType> bool operator!= (const OtherObjectType& other) const noexcept { return target != getPointer (other); }
67 template <typename OtherObjectType> bool operator< (const OtherObjectType& other) const noexcept { return target < getPointer (other); }
68
69private:
70 ObjectType* target;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected