See: Description
| Interface | Description |
|---|---|
| Either<L,R> |
Represents a value of one of two possible types.
|
| Option<T> |
Represents optional values.
|
| Try<T> |
The 'Try' type represents a computation that may either result in an exception, or return a successfully computed value.
|
| Class | Description |
|---|---|
| Failure<T> |
Represents the 'failed' implementation of
Try. |
| Left<L,R> | |
| LeftProjection<L,R> |
This is a left-biased wrapper for an instance of
Either. |
| None<T> |
Represents an empty
Option. |
| Right<L,R> | |
| RightProjection<L,R> |
This is a right-biased wrapper for an instance of
Either. |
| Some<T> |
Represents an
Option holding a value. |
| Success<T> |
Represents the 'successful' implementation of
Try. |
Copyright © 2015. All rights reserved.