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