public interface IntToLong
Instances of
IntToLong
represent functions
which take int
s as input and return values of
type long
. Such instances are created by
lambda expressions of the XL programming language, e.g.,
IntToLong f = int x => long
some expression containing x;
.- Author:
- Ole Kniemeyer
-
Method Summary
Modifier and TypeMethodDescriptionlong
evaluateLong
(int x) Computes the value of this function atx
.
-
Method Details
-
evaluateLong
long evaluateLong(int x) Computes the value of this function atx
.- Parameters:
x
- where the function is to be evaluated- Returns:
- function value at
x
-