Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ iter_indices
Function
iter_indices
numpy/core/tests/test_nditer.py:23–28 ·
view source on GitHub ↗
(i)
Source
from the content-addressed store, hash-verified
21
return
ret
22
23
def
iter_indices(i):
24
ret = []
25
while
not i.finished:
26
ret.append(i.index)
27
i.iternext()
28
return
ret
29
30
def
iter_iterindices(i):
31
ret = []
Callers
6
test_iter_best_order_c_index_1d
Function · 0.85
test_iter_best_order_c_index_2d
Function · 0.85
test_iter_best_order_c_index_3d
Function · 0.85
test_iter_best_order_f_index_1d
Function · 0.85
test_iter_best_order_f_index_2d
Function · 0.85
test_iter_best_order_f_index_3d
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected