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

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

There is a newer version: 1.0.1
Show 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 - 2025 Weber Informatics LLC | Privacy Policy