Hi - what happens when the any of `indices` passed to `__getitem__` are integers, or list of integers? E.g. ```python >>> a[:, 3] >>> a[:, [3, 4]] >>> a[[1, 2], [3, 4]] ``` Does the active reduction work in these cases?