MCPcopy Create free account
hub / github.com/couchbase/fleece / operator<

Method operator<

API/fleece/slice.hh:156–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154 bool operator==(const pure_slice &s) const noexcept FLPURE {return FLSlice_Equal(*this,s);}
155 bool operator!=(const pure_slice &s) const noexcept FLPURE {return !(*this == s);}
156 bool operator<(pure_slice s) const noexcept FLPURE {return compare(s) < 0;}
157 bool operator>(pure_slice s) const noexcept FLPURE {return compare(s) > 0;}
158 bool operator<=(pure_slice s) const noexcept FLPURE {return compare(s) <= 0;}
159 bool operator>=(pure_slice s) const noexcept FLPURE {return compare(s) >= 0;}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected