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