thought of a better way to explain Result

This commit is contained in:
Rowan 2025-03-31 20:50:55 -05:00
parent b271ef2549
commit eb2f6d9b15

View file

@ -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