Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
push
Method · 0.95
delete
Method · 0.80
append
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected