Get link by its index, return None if there is no link with such an index
(self, linkIdx)
| 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 """ |
| 177 | if linkIdx < self.refcnt: |
| 178 | return self.links[linkIdx] |
| 179 | |
| 180 | def getLinkIdx(self, destNode): |
| 181 | """ Get index of the link which points to the given node """ |
no outgoing calls
no test coverage detected