Returns true if node doesn't containt any value
(self)
| 169 | return self.refcnt == 0 |
| 170 | |
| 171 | def isEmptyNode(self): |
| 172 | """ Returns true if node doesn't containt any value """ |
| 173 | return self.valcnt == 0 |
| 174 | |
| 175 | def getLink(self, linkIdx): |
| 176 | """ Get link by its index, return None if there is no link with such an index """ |