Return corresponding data.
(self)
| 125 | return out |
| 126 | |
| 127 | def __array__(self): |
| 128 | """ |
| 129 | Return corresponding data. |
| 130 | |
| 131 | """ |
| 132 | slice_ = tuple(slice(*t) for t in zip( |
| 133 | self.start, self.stop, self.step)) |
| 134 | return self.var[slice_] |
| 135 | |
| 136 | @property |
| 137 | def flat(self): |
nothing calls this directly
no outgoing calls
no test coverage detected