MCPcopy Create free account
hub / github.com/grantjenks/python-sortedcontainers / __iter__

Method __iter__

tests/sortedcollection.py:111–112  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

109 return self._items[i]
110
111 def __iter__(self):
112 return iter(self._items)
113
114 def __reversed__(self):
115 return reversed(self._items)

Callers

nothing calls this directly

Calls 1

iterFunction · 0.70

Tested by

no test coverage detected