E - the Exception type that the operation may throw@FunctionalInterface public interface IntToLongE<E extends Exception>
(int) -> long.| Modifier and Type | Method and Description |
|---|---|
default NilToLongE<E> |
bind(int i)
Binds
(i) to this, returning a new function
of type () -> long. |
static <E extends Exception> |
bind(IntToLongE<E> f,
int i)
Binds
(i) to f, returning a new function
of type () -> long. |
long |
call(int i)
Performs this operation.
|
static <E extends Exception> NilToLongE<E> bind(IntToLongE<E> f, int i)
(i) to f, returning a new function
of type () -> long.E - the Exception type that the operation may throwf - the unbound functioni - the argument() -> long that calls
f.call(i) and returns the result.default NilToLongE<E> bind(int i)
(i) to this, returning a new function
of type () -> long.i - the argument() -> long that calls
this.call(i) and returns the result.Copyright © 2015. All rights reserved.