DoubleToLongFunction applyAsLong applies the functional interface to the given argument.
applyAsLong
has the following syntax.
long applyAsLong(double value)
The following example shows how to use applyAsLong
.
import java.util.function.DoubleToLongFunction; public class Main { public static void main(String[] args) { DoubleToLongFunction dl = (x) -> {return Long.MAX_VALUE - (long)x;}; System.out.println(dl.applyAsLong(3.14)); } }
The code above generates the following result.