E - the Exception type that the operation may throw@FunctionalInterface public interface LongIntToShortE<E extends Exception>
(long, int) -> short.| Modifier and Type | Method and Description |
|---|---|
default IntToShortE<E> |
bind(long l)
Binds
(l) to the beginning of this, returning a new function
of type (int) -> short. |
default NilToShortE<E> |
bind(long l,
int i)
Binds
(l, i) to this, returning a new function
of type () -> short. |
static <E extends Exception> |
bind(LongIntToShortE<E> f,
long l)
Binds
(l) to the beginning of f, returning a new function
of type (int) -> short. |
static <E extends Exception> |
bind(LongIntToShortE<E> f,
long l,
int i)
Binds
(l, i) to f, returning a new function
of type () -> short. |
short |
call(long l,
int i)
Performs this operation.
|
default LongToShortE<E> |
rbind(int i)
Binds
(i) to the end of this, returning a new function
of type (long) -> short. |
static <E extends Exception> |
rbind(LongIntToShortE<E> f,
int i)
Binds
(i) to the end of f, returning a new function
of type (long) -> short. |
static <E extends Exception> IntToShortE<E> bind(LongIntToShortE<E> f, long l)
(l) to the beginning of f, returning a new function
of type (int) -> short.E - the Exception type that the operation may throwf - the unbound functionl - argument 1(int i) -> short that calls
f.call(l, i) and returns the result.default IntToShortE<E> bind(long l)
(l) to the beginning of this, returning a new function
of type (int) -> short.l - argument 1(int i) -> short that calls
this.call(l, i) and returns the result.static <E extends Exception> LongToShortE<E> rbind(LongIntToShortE<E> f, int i)
(i) to the end of f, returning a new function
of type (long) -> short.E - the Exception type that the operation may throwf - the unbound functioni - argument 2(long l) -> short that calls
f.call(l, i) and returns the result.default LongToShortE<E> rbind(int i)
(i) to the end of this, returning a new function
of type (long) -> short.i - argument 2(long l) -> short that calls
this.call(l, i) and returns the result.static <E extends Exception> NilToShortE<E> bind(LongIntToShortE<E> f, long l, int i)
(l, i) to f, returning a new function
of type () -> short.E - the Exception type that the operation may throwf - the unbound functionl - argument 1i - argument 2() -> short that calls
f.call(l, i) and returns the result.default NilToShortE<E> bind(long l, int i)
(l, i) to this, returning a new function
of type () -> short.l - argument 1i - argument 2() -> short that calls
this.call(l, i) and returns the result.Copyright © 2014. All rights reserved.