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