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