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