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