| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected