package fp; /** * Ternary lambda. * @author Mathias Ricken - Copyright 2008 - All rights reserved. */ public interface ILambda3 { R apply(P arg1, Q arg2, S arg3); }