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