(self, path=None)
| 410 | return self.sequences[path][i] |
| 411 | |
| 412 | def items(self, path=None): |
| 413 | if path is None: |
| 414 | assert list(self.sequences.keys())[0] is NoDim, "Cannot access item without path if the array has more than one dimension." |
| 415 | path = NoDim |
| 416 | for s in self.sequences[path]: |
| 417 | yield s |
| 418 | |
| 419 | def unique(self): |
| 420 | """ |
no outgoing calls
no test coverage detected