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