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