MCPcopy Create free account
hub / github.com/VCVRack/Rack / operator<

Method operator<

src/midi.cpp:297–299  ·  view source on GitHub ↗

Returns whether `this` is LATER in time than `other`. If frame is same, compares `seq`. */

Source from the content-addressed store, hash-verified

295 If frame is same, compares `seq`.
296 */
297 bool operator<(const SeqMessage& other) const {
298 return std::make_tuple(message.getFrame(), seq) > std::make_tuple(other.message.getFrame(), other.seq);
299 }
300};
301
302static const size_t InputQueue_maxSize = 8192;

Callers

nothing calls this directly

Calls 1

getFrameMethod · 0.45

Tested by

no test coverage detected