thought of a better way to explain Result
This commit is contained in:
parent
b271ef2549
commit
eb2f6d9b15
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ None.isNone() // true
|
||||||
### Result
|
### Result
|
||||||
> Result<T, E> = Ok\<T\> | Err\<E\>
|
> Result<T, E> = Ok\<T\> | Err\<E\>
|
||||||
|
|
||||||
Represents a value which may fail.
|
Represents the result of a computation which may fail.
|
||||||
|
|
||||||
#### Methods
|
#### Methods
|
||||||
##### of :: Result f => a -> f a
|
##### of :: Result f => a -> f a
|
||||||
|
|
Loading…
Add table
Reference in a new issue