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