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