Check whether this is a leaf node or not
(self)
| 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 """ |
| 169 | return self.refcnt == 0 |
| 170 | |
| 171 | def isEmptyNode(self): |
| 172 | """ Returns true if node doesn't containt any value """ |
no outgoing calls
no test coverage detected