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