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