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