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