MCPcopy Create free account
hub / github.com/couchbase/fleece / empty

Method empty

Fleece/Support/Bitmap.hh:68–68  ·  view source on GitHub ↗

True if no bits are 1 */

Source from the content-addressed store, hash-verified

66
67 /** True if no bits are 1 */
68 bool empty() const {return _bits == 0;}
69
70 /** True if the bit at index `bitNo` (with 0 being the LSB) is 1. */
71 bool containsBit(unsigned bitNo) const {return (_bits & mask(bitNo)) != 0;}

Callers 15

diff_mainMethod · 0.45
diff_computeMethod · 0.45
diff_cleanupSemanticMethod · 0.45
diff_cleanupMergeMethod · 0.45
diff_toDeltaMethod · 0.45
match_mainMethod · 0.45
patch_addContextMethod · 0.45
patch_makeMethod · 0.45
patch_applyMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected