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

Method operator==

Fleece/Support/diff_match_patch.hh:141–143  ·  view source on GitHub ↗

* Is this Diff equivalent to another Diff? * @param d Another Diff to compare against * @return true or false */

Source from the content-addressed store, hash-verified

139 * @return true or false
140 */
141 bool operator==(const Diff &d) const {
142 return (d.operation == this->operation) && (d.text == this->text);
143 }
144 bool operator!=(const Diff &d) const { return !(operator == (d)); }
145
146 static string_t strOperation(Operation op) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected