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