MCPcopy Index your code
hub / github.com/clips/pattern / __iter__

Method __iter__

pattern/db/__init__.py:1912–1913  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1910 def __len__(self):
1911 return len(self._datasheet)
1912 def __iter__(self):
1913 for i in xrange(len(self)): yield list.__getitem__(self._datasheet, i)
1914 def __repr__(self):
1915 return repr(self._datasheet)
1916 def __add__(self, row):

Callers

nothing calls this directly

Calls 2

lenFunction · 0.85
__getitem__Method · 0.45

Tested by

no test coverage detected