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

water.IcedUtils Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water;

/**
 * Utility class to support Iced objects.
 */
public class IcedUtils {

  /** Deep-copy clone given iced object. */
  static public  T deepCopy(T iced) {
    AutoBuffer ab = new AutoBuffer();
    iced.write(ab);
    ab.flipForReading();
    // Create a new instance
    return (T) TypeMap.newInstance(iced.frozenType()).read(ab);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy