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

org.reactfx.util.Monoid Maven / Gradle / Ivy

There is a newer version: 2.0-M5
Show newest version
package org.reactfx.util;

public interface Monoid {
    T unit();
    T reduce(T left, T right);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy