All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lambda.query.Echo1 Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package org.lambda.query;

import com.spun.util.DeprecatedException;
import org.lambda.functions.Function1;

/**
 * @deprecated use lambdas: {@literal  a -> a }
 */
@Deprecated
public class Echo1 implements Function1
{
  public T call(T i)
  {
    throw new DeprecatedException("a -> a");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy