| Package | Description |
|---|---|
| net.mintern.functions.binary |
Provides
@FunctionalInterfaces for 2-argument
operations. |
| net.mintern.functions.binary.checked |
Provides
@FunctionalInterfaces for 2-argument
operations that throw checked exceptions. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ObjLongToShort<T>
An operation of type
(T, long) -> short. |
| Modifier and Type | Method and Description |
|---|---|
static <T,E extends Exception> |
ObjLongToShort.unchecked(Function<? super E,RuntimeException> toRuntime,
ObjLongToShortE<T,E> f)
Returns a wrapped version of
f that uses toRuntime to convert any checked
Exception to a RuntimeException. |
static <T,E extends Exception> |
ObjLongToShort.unchecked(ObjLongToShortE<T,E> f)
Returns a wrapped version of
f that wraps any checked Exception with a
RuntimeException. |
static <T,E extends IOException> |
ObjLongToShort.uncheckedIO(ObjLongToShortE<T,E> f)
|
| Modifier and Type | Method and Description |
|---|---|
static <T,E extends Exception> |
ObjLongToShortE.bind(ObjLongToShortE<T,E> f,
T t)
Binds
(t) to the beginning of f, returning a new function
of type (long) -> short. |
static <T,E extends Exception> |
ObjLongToShortE.bind(ObjLongToShortE<T,E> f,
T t,
long l)
Binds
(t, l) to f, returning a new function
of type () -> short. |
static <T,E extends Exception> |
ObjLongToShortE.rbind(ObjLongToShortE<T,E> f,
long l)
Binds
(l) to the end of f, returning a new function
of type (T) -> short. |
Copyright © 2014. All rights reserved.