Get index of the link which points to the given node
(self, destNode)
| 178 | return self.links[linkIdx] |
| 179 | |
| 180 | def getLinkIdx(self, destNode): |
| 181 | """ Get index of the link which points to the given node """ |
| 182 | return self.links.index(destNode) |
| 183 | |
| 184 | def addLink(self, anotherNode): |
| 185 | """ Add link to another node """ |
no test coverage detected