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