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