The keys for this expression This is used to determine the keys of the output collection when this expression is computed. Returns ------- keys: list The keys for this expression
(self)
| 148 | return self._determ_token |
| 149 | |
| 150 | def __dask_keys__(self): |
| 151 | """The keys for this expression |
| 152 | |
| 153 | This is used to determine the keys of the output collection |
| 154 | when this expression is computed. |
| 155 | |
| 156 | Returns |
| 157 | ------- |
| 158 | keys: list |
| 159 | The keys for this expression |
| 160 | """ |
| 161 | return [(self._name, i) for i in range(self.npartitions)] |
| 162 | |
| 163 | @staticmethod |
| 164 | def _reconstruct(*args): |
no outgoing calls
no test coverage detected