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