> 1.8.See: Description
| Interface | Description |
|---|---|
| Consumer<T> |
Represents an operation that takes an input and returns no result.
|
| Filter<T> |
Generic Filter functional interface.
|
| Class | Description |
|---|---|
| Either<L,R> |
Represents a value that can be one of two types.
|
| Either.Left<L,R> |
A left projected
Either. |
| Either.Right<L,R> |
A right projected
Either. |
| Filters |
Provides a generic AllPass filter.
|
| Exception | Description |
|---|---|
| Either.NotLeftException |
An error that is thrown if an attempt is made to project an Either to
Either.Left when the object is actually an instance of Either.Right. |
| Either.NotRightException |
An error that is thrown if an attempt is made to project an Either to
Either.Right when the object is actually an instance of Either.Left. |
> 1.8.