no.motif.f.Do Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of motif Show documentation
Show all versions of motif Show documentation
A library helping you to compose behavior from smaller parts.
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);
}