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