Arguments
- Name: index, Type: int
- index of the pyNodeList
Source
def eq(self, index):
if (0 <= index and index < len(self)) or \
(index < 0 and abs(index) <= len(self)):
return self[index]
return None