@FunctionalInterface public interface CheckedIntToLongFunction
IntToLongFunction that allows for checked exceptions.| Modifier and Type | Method and Description |
|---|---|
long |
applyAsLong(int value)
Applies this function to the given argument.
|
static java.util.function.IntToLongFunction |
unchecked(CheckedIntToLongFunction function) |
static java.util.function.IntToLongFunction |
unchecked(CheckedIntToLongFunction function,
java.util.function.Consumer<Throwable> handler) |
long applyAsLong(int value)
throws Throwable
value - the function argumentThrowablestatic java.util.function.IntToLongFunction unchecked(CheckedIntToLongFunction function)
Unchecked#intToLongFunction(CheckedIntToLongFunction)}static java.util.function.IntToLongFunction unchecked(CheckedIntToLongFunction function, java.util.function.Consumer<Throwable> handler)
Unchecked#intToLongFunction(CheckedIntToLongFunction, Consumer)}Copyright © 2016. All Rights Reserved.