klyn.math.NDArray.floor
method
public floor() as NDArray<T>:
Description
Applies `floor` element-wise while preserving the array element type.
a = NDArray<Double>.fromList([1.2, 3.8])
print(a.floor())