You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created an 8 dimension ArrayD.
I can not find how to index the ArrayD for 8 dim.
Compiler raises
the trait NdIndex<Dim<IxDynImpl>> is not implemented for [usize; 8] error when addressing
array[[i, j, k, l, m, n, o, p]].
When tuple form is tried,
the trait NdIndex<Dim<IxDynImpl>> is not implemented for (usize, usize, usize, usize, usize, usize, usize, usize) error is raised.
The text was updated successfully, but these errors were encountered:
It looks like #980 will implement for [usize; T] using const generics, so in 0.16.x you should be able to use array[[i, j, k, l, m, n, o, p]], and the compiler error you got should go away :)
I created an 8 dimension ArrayD.
I can not find how to index the ArrayD for 8 dim.
Compiler raises
the trait
NdIndex<Dim<IxDynImpl>>
is not implemented for[usize; 8]
error when addressingarray[[i, j, k, l, m, n, o, p]].
When tuple form is tried,
the trait
NdIndex<Dim<IxDynImpl>>
is not implemented for(usize, usize, usize, usize, usize, usize, usize, usize)
error is raised.The text was updated successfully, but these errors were encountered: