Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ __iter__
Method
__iter__
lib/sqlalchemy/util/_collections.py:168–169 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
166
return
len(self._data)
167
168
def
__iter__(self) -> Iterator[_T]:
169
return
iter(list(self._data.values()))
170
171
def
__dir__(self) -> List[str]:
172
return
dir(super()) + [str(k)
for
k in self._data.keys()]
Callers
nothing calls this directly
Calls
1
values
Method · 0.45
Tested by
no test coverage detected