MCPcopy
hub / github.com/jwasham/practice-python / get_next

Method get_next

linked_lists/node.py:12–13  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

10 self.data_ = data
11
12 def get_next(self):
13 return self.next_
14
15 def set_next(self, next):
16 self.next_ = next

Callers 6

__len__Method · 0.80
__str__Method · 0.80
popMethod · 0.80
containsMethod · 0.80
deleteMethod · 0.80
appendMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected