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