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