klyn.math.NDArray.operator//
method
public static operator//(first as NDArray<T>, second as NDArray<T>) as NDArray<T>:
Description

Integer-divides two NDArrays element-wise.

a = NDArray<Int>.fromList([10, 21])
b = NDArray<Int>.fromList([3, 4])
c = a // b