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

no.motif.f.Do Maven / Gradle / Ivy

The newest version!
package no.motif.f;

import java.io.Serializable;

/**
 * This is the equivalent of a method with return type
 * void. It is a pseudo-function which performs
 * only side-effects.
 *
 * @param  The type of the value which this Do accepts.
 */
public interface Do extends Serializable {

    void with(T value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy