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