MCPcopy Create free account
hub / github.com/EntilZha/PyFunctional / _evaluate

Method _evaluate

functional/pipeline.py:171–177  ·  view source on GitHub ↗

Creates and returns an iterator which applies all the transformations in the lineage :return: iterator over the transformed sequence

(self)

Source from the content-addressed store, hash-verified

169 return Sequence(self.sequence + other)
170
171 def _evaluate(self):
172 """
173 Creates and returns an iterator which applies all the transformations in the lineage
174
175 :return: iterator over the transformed sequence
176 """
177 return self._lineage.evaluate(self._base_sequence)
178
179 def _transform(self, *transforms):
180 """

Callers 2

__iter__Method · 0.95
cacheMethod · 0.95

Calls 1

evaluateMethod · 0.45

Tested by

no test coverage detected