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

Method MutableNode

Fleece/Tree/MutableNode.hh:34–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32 class MutableNode {
33 public:
34 MutableNode(unsigned capacity)
35 :_capacity(int8_t(capacity))
36 {
37 assert_precondition(capacity <= kMaxChildren);
38 }
39
40 bool isLeaf() const FLPURE {return _capacity == 0;}
41

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected