MCPcopy Create free account
hub / github.com/ActiveState/code / zip

Method zip

recipes/Python/498272_Rich_iterator_wrapper/recipe-498272.py:43–43  ·  view source on GitHub ↗
(self, *others)

Source from the content-addressed store, hash-verified

41 def enumerate(self): return Iter(enumerate(self._it))
42 def map(self, func): return Iter(imap(func,self))
43 def zip(self, *others): return Iter(izip(self._it, *others))
44 def filter(self, predicate): return Iter(ifilter(predicate,self._it))
45 def filterfalse(self, predicate): return Iter(ifilterfalse(predicate,self._it))
46 def cycle(self): return Iter(cycle(self._it))

Callers

nothing calls this directly

Calls 1

IterClass · 0.85

Tested by

no test coverage detected