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