Package org.multiverse.api.functions
Class LongFunction
- java.lang.Object
-
- org.multiverse.api.functions.LongFunction
-
public abstract class LongFunction extends Object implements Function<Long>
AFunction
for primitives that accepts an argument of type long and returns a new value of the same type.The reason why
LongFunction
is an abstract class instead of an ordinary interface, is that this class doesn't cause any unwanted boxing of primitives version of the call method is used instead of the one that accepts and returns a/an Long).This class is generated.
-
-
Constructor Summary
Constructors Constructor Description LongFunction()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract long
call(long current)
Calculates the new value based on the current value.Long
call(Long arg)
Evaluates the function.
-