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