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