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