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