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