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