Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Jack-Lee-Hiter/AlgorithmsByPython
/ __iter__
Method
__iter__
BinarySearchTree.py:55–56 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
53
return
self.size
54
55
def
__iter__(self):
56
return
self.root.__iter__()
57
58
def
put(self, key, val):
59
if
self.root:
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected