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