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