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