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