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