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