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