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