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



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



