Interface DualParameterOperation
- All Superinterfaces:
BiFunction<Numeral,
,Numeral[], Numeral> Operation
An
Operation
that takes in two parameters along with an input.-
Method Summary
Methods inherited from interface java.util.function.BiFunction
andThen
-
Method Details
-
apply
-
getParameterCount
default int getParameterCount()- Specified by:
getParameterCount
in interfaceOperation
- Returns:
- the amount of parameters this operation expects (2)
-
apply
It is recommended to useapply(Numeral, Numeral, Numeral)
where possible instead.- Specified by:
apply
in interfaceBiFunction<Numeral,
Numeral[], Numeral> - Specified by:
apply
in interfaceOperation
- Parameters:
source
- sourceNumeral
for this operationparameters
- parameterNumerals
for this operation- Returns:
- resulting
Numeral
of this operation - Throws:
IllegalArgumentException
- if the amount of parameters is not equal togetParameterCount()
(2)
-