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