Class OperationChain

java.lang.Object
me.datafox.dfxengine.values.operation.OperationChain
All Implemented Interfaces:
BiFunction<Numeral,Numeral[],Numeral>, Operation

public final class OperationChain extends Object implements Operation
An Operation that chains multiple operations together. The operations are executed in order, with the previous one's output as the next one's input. Parameters are given in order, with the total parameter count being the sum of all parameter counts of the specified operations. A simple OperationChain.Builder that works with method references is included for convenience.