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