com.github.basking2.sdsai.itrex.functions.functional.PipelineFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdsai-itrex Show documentation
Show all versions of sdsai-itrex Show documentation
An S-Expression inspiried library focused on iterators.
package com.github.basking2.sdsai.itrex.functions.functional;
import com.github.basking2.sdsai.itrex.EvaluationContext;
import com.github.basking2.sdsai.itrex.Evaluator;
import com.github.basking2.sdsai.itrex.SExprRuntimeException;
import com.github.basking2.sdsai.itrex.functions.FunctionInterface;
import static com.github.basking2.sdsai.itrex.iterators.Iterators.wrap;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* A function that returns a function that ties many functions together.
*
* For readability any strings that are "|" or "=<" are ignored.
*/
public class PipelineFunction implements FunctionInterface> {
@Override
public FunctionInterface
© 2015 - 2024 Weber Informatics LLC | Privacy Policy