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