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

org.guppy4j.Array Maven / Gradle / Ivy

The newest version!
package org.guppy4j;

/**
 * Appendable array
 */
public interface Array {

    T[] content();

    Array append(Array other);

    Array append(T... other);

    Array newFrom(T[] array);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy