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