001 package fp; 002 003 /** 004 * Unary lambda. 005 * @author Mathias Ricken - Copyright 2008 - All rights reserved. 006 */ 007 public interface ILambda1<R,P> { 008 R apply(P arg1); 009 }