ndarray/src/main/java/org/tensorflow/ndarray/StdArrays.java [2024:2031]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static void copyFrom(IntNdArray src, int[][] dst) {
    if (src.rank() != 2) {
      throw new IllegalArgumentException("Array cannot be copied from NdArray of rank " + src.rank());
    }
    src.elements(0).forEachIndexed((idx, e) ->
        copyFrom(e, dst[(int)idx[0]])
    );
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ndarray/src/main/java/org/tensorflow/ndarray/StdArrays.java [2127:2134]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static void copyFrom(LongNdArray src, long[][] dst) {
    if (src.rank() != 2) {
      throw new IllegalArgumentException("Array cannot be copied from NdArray of rank " + src.rank());
    }
    src.elements(0).forEachIndexed((idx, e) ->
        copyFrom(e, dst[(int)idx[0]])
    );
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



