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