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