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