All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.levigo.util.gwtawt.client.helper.Cloner Maven / Gradle / Ivy

The newest version!
package com.levigo.util.gwtawt.client.helper;

public class Cloner {
  public static float[] clone(float[] obj) {
    float[] ret = new float[obj.length];
    for (int i = 0; i < obj.length; i++)
      ret[i] = obj[i];
    return ret;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy