package fj.function; /** * Created by mperry on 28/08/2014. */ public interface Effect2<A, B> { void f(A a, B b); }