Has there been any attempt on multidimensional array in Kotlin?

Dear all,

after so much time, I just wonder if there has been any attempt or intention to support multidimensional array in Kotlin?

Thanks

Hello, please follow https://youtrack.jetbrains.com/issue/KT-21670

I’ve implemented numpy-like NDArrays here. The solution is slightly different than KT-21607, it defines a field for for arrays with given shape rather than specific classes for 2d and 3d arrays. 2d and 3d arrays are introduced on top of NDArray as factory methods.

Is there any work being done on KT-21607? I would like to compare notes.

P. S. Feel free to leave feature requests at kmath issue tracker

1 Like