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