Creates and returns an iterator which applies all the transformations in the lineage :return: iterator over the transformed sequence
(self)
| 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 | """ |