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

com.github.basking2.sdsai.itrex.packages.FunctionalPackage Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.github.basking2.sdsai.itrex.packages;

import com.github.basking2.sdsai.itrex.functions.FunctionInterface;
import com.github.basking2.sdsai.itrex.functions.functional.*;

import java.util.Iterator;

/**
 * The contents of {@link com.github.basking2.sdsai.itrex.functions.functional}.
 */
public class FunctionalPackage {
    public static final FunctionInterface> curry = new CurryFunction();
    public static final FunctionInterface> compose = new ComposeFunction();
    public static final FunctionInterface> map = new MapFunction();
    public static final FunctionInterface foldLeft = new FoldLeftFunction();
    public static final FunctionInterface fold = foldLeft;
    public static final FunctionInterface callFlattened = new CallFlattenedFunction();
    public static final FunctionInterface> pipeline = new PipelineFunction();
}