MCPcopy Create free account
hub / github.com/numpy/numpy / iter_multi_index

Function iter_multi_index

numpy/core/tests/test_nditer.py:16–21  ·  view source on GitHub ↗
(i)

Source from the content-addressed store, hash-verified

14
15
16def iter_multi_index(i):
17 ret = []
18 while not i.finished:
19 ret.append(i.multi_index)
20 i.iternext()
21 return ret
22
23def iter_indices(i):
24 ret = []

Calls

no outgoing calls

Tested by

no test coverage detected