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