E - the Exception type that the operation may throw@FunctionalInterface public interface ShortBoolToNilE<E extends Exception>
(short, boolean) -> void.| Modifier and Type | Method and Description |
|---|---|
default BoolToNilE<E> |
bind(short sh)
Binds
(sh) to the beginning of this, returning a new function
of type (boolean) -> void. |
default NilToNilE<E> |
bind(short sh,
boolean bool)
Binds
(sh, bool) to this, returning a new function
of type () -> void. |
static <E extends Exception> |
bind(ShortBoolToNilE<E> f,
short sh)
Binds
(sh) to the beginning of f, returning a new function
of type (boolean) -> void. |
static <E extends Exception> |
bind(ShortBoolToNilE<E> f,
short sh,
boolean bool)
Binds
(sh, bool) to f, returning a new function
of type () -> void. |
void |
call(short sh,
boolean bool)
Performs this operation.
|
default ShortToNilE<E> |
rbind(boolean bool)
Binds
(bool) to the end of this, returning a new function
of type (short) -> void. |
static <E extends Exception> |
rbind(ShortBoolToNilE<E> f,
boolean bool)
Binds
(bool) to the end of f, returning a new function
of type (short) -> void. |
static <E extends Exception> BoolToNilE<E> bind(ShortBoolToNilE<E> f, short sh)
(sh) to the beginning of f, returning a new function
of type (boolean) -> void.E - the Exception type that the operation may throwf - the unbound functionsh - argument 1(boolean bool) -> void that calls
f.call(sh, bool).default BoolToNilE<E> bind(short sh)
(sh) to the beginning of this, returning a new function
of type (boolean) -> void.sh - argument 1(boolean bool) -> void that calls
this.call(sh, bool).static <E extends Exception> ShortToNilE<E> rbind(ShortBoolToNilE<E> f, boolean bool)
(bool) to the end of f, returning a new function
of type (short) -> void.E - the Exception type that the operation may throwf - the unbound functionbool - argument 2(short sh) -> void that calls
f.call(sh, bool).default ShortToNilE<E> rbind(boolean bool)
(bool) to the end of this, returning a new function
of type (short) -> void.bool - argument 2(short sh) -> void that calls
this.call(sh, bool).static <E extends Exception> NilToNilE<E> bind(ShortBoolToNilE<E> f, short sh, boolean bool)
(sh, bool) to f, returning a new function
of type () -> void.E - the Exception type that the operation may throwf - the unbound functionsh - argument 1bool - argument 2() -> void that calls
f.call(sh, bool).Copyright © 2014. All rights reserved.