Class | Description |
---|---|
And |
Logical conjunction.
|
AsyncFunc<X,Y> |
Func that runs in the background.
|
CallableOf<X,T> |
Func as
Callable . |
ChainedFunc<X,Y,Z> |
Composed function.
|
Equals<T extends Comparable<T>> |
Equals.
|
False |
Logical false.
|
FuncOf<X,Y> |
Represents many possible inputs as
Func . |
FuncWithFallback<X,Y> |
Func with a fallback plan.
|
IoCheckedFunc<X,Y> |
Func that doesn't throw checked
Exception , but throws
IOException instead. |
IoCheckedProc<X> |
Proc that doesn't throw checked
Exception , but
throws IOException instead. |
IoCheckedScalar<T> |
Scalar that doesn't throw checked
Exception , but throws
IOException instead. |
MatcherOf<T> |
Func as Matcher.
|
Not |
Logical negative.
|
Or |
Logical disjunction.
|
ProcOf<X> |
Func as Proc.
|
RepeatedFunc<X,Y> |
Func that repeats its calculation a few times before
returning the last result.
|
RetryFunc<X,Y> |
Func that will try a few times before throwing an exception.
|
RetryScalar<T> |
Func that will try a few times before throwing an exception.
|
RunnableOf<X> |
Func as Runnable.
|
StickyFunc<X,Y> |
Func that caches previously calculated values and doesn't
recalculate again.
|
StickyScalar<T> |
Cached version of a Scalar.
|
SyncFunc<X,Y> |
Func that is thread-safe.
|
SyncScalar<T> |
Scalar that is thread-safe.
|
Ternary<T> |
Ternary operation.
|
True |
Logical truth.
|
UncheckedFunc<X,Y> |
Func that doesn't throw checked
Exception . |
UncheckedProc<X> |
Proc that doesn't throw checked
Exception . |
UncheckedScalar<T> |
Scalar that doesn't throw checked
Exception . |
Copyright © 2017 Cactoos. All rights reserved.