Interface SourceOperation
- All Superinterfaces:
BiFunction<Numeral,
,Numeral[], Numeral> Operation
An
Operation
that takes in no parameters, only an input.-
Method Summary
Modifier and TypeMethodDescriptiondefault Numeral
It is recommended to useapply(Numeral)
where possible instead.default int
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 (0)
-
apply
It is recommended to useapply(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()
(0)
-