MCPcopy Create free account
hub / github.com/apple/foundationdb / operator<

Method operator<

bindings/flow/Tuple.cpp:611–613  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

609 return compare(data, other.data) != 0;
610}
611bool Tuple::operator<(Tuple const& other) const {
612 return compare(data, other.data) < 0;
613}
614bool Tuple::operator<=(Tuple const& other) const {
615 return compare(data, other.data) <= 0;
616}

Callers

nothing calls this directly

Calls 1

compareFunction · 0.70

Tested by

no test coverage detected