'T tryval Type
A type alias for the TryValue<T> type. The type alias can be used
to make F# type declarations that explcitly handle exceptions more succinct.
Instance members
| Instance member |
Description
|
Full Usage:
this.Exception
Returns: exn
|
Returns the exception captured by this value. When `HasValue = true`, accessing the property throws `InvalidOperationException`.
|
Full Usage:
this.HasValue
Returns: bool
|
Returns `true` when the `TryValue
|
Full Usage:
this.IsError
Returns: bool
|
|
Full Usage:
this.IsSuccess
Returns: bool
|
|
Full Usage:
this.Value
Returns: 'T
|
Returns the value of `TryValue
|
Deedle