klyn.math.NDArray.operator[]
method
public operator[](row as Int, col as Int) as Object:
Description
Gets one element for 2D arrays.
a = NDArray<Int>.fromList([[10, 20], [30, 40]])
print(a[1, 0])   # 30