package fp; /** * Unary lambda. * @author Mathias Ricken - Copyright 2008 - All rights reserved. */ public interface ILambda1 { R apply(P arg1); }