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