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