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