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

Method operator==

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

Source from the content-addressed store, hash-verified

152 // Relational operators, implemented with FLSlice_Equal and compare():
153
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;}

Callers

nothing calls this directly

Calls 1

FLSlice_EqualFunction · 0.85

Tested by

no test coverage detected