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