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