Class MappingOperationChain

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

public final class MappingOperationChain extends Object implements Operation
An extension of the OperationChain which offers more flexible ways for routing parameters. There are two main changes. Firstly, inputs are now counted as regular parameters. This means that Operation.getParameterCount() now returns the number of parameters for all specified Operations, plus the amount of operations themselves. The second change is the inclusion of the MappingOperationChain.SpecialNumeral, which is used to request the source Numeral and the result of any prior operation as an arbitrary parameter. Two static methods are provided for these, sourceNumeral() and resultNumeral(int), but you can also instantiate a SpecialNumeral manually with SpecialNumeral(int), where -1 refers to the source and any positive value refers to the operation with that index. Referring to an operation that has yet to be executed results in an IllegalArgumentException.