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

Method set_next

linked_lists/node.py:15–16  ·  view source on GitHub ↗
(self, next)

Source from the content-addressed store, hash-verified

13 return self.next_
14
15 def set_next(self, next):
16 self.next_ = next
17
18 def __str__(self):
19 return str(self.data_)

Callers 3

pushMethod · 0.95
deleteMethod · 0.80
appendMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected