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