package fp; /** * Identity function. * @author Mathias Ricken - Copyright 2008 - All rights reserved. */ public class Identity implements ILambda { public T apply(T... params) { return params[0]; } }