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