Check whether the node is consistent, this means it doesn't contain 3 items or 4 links
(self)
| 161 | return self |
| 162 | |
| 163 | def isConsistent(self): |
| 164 | """ Check whether the node is consistent, this means it doesn't contain 3 items or 4 links """ |
| 165 | return not (self.valcnt > 2 or self.refcnt > 3) |
| 166 | |
| 167 | def isLeafNode(self): |
| 168 | """ Check whether this is a leaf node or not """ |
no outgoing calls
no test coverage detected