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