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