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