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