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