See: Description
Interface | Description |
---|---|
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 . |
None<T> |
Represents an empty
Option . |
Some<T> |
Represents an
Option holding a value. |
Success<T> |
Represents the 'successful' implementation of
Try . |
Copyright © 2015. All rights reserved.