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