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