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