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