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