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