gretmn102 / gretmn102/FsharpMyExtension
feat(Containers.Option): add computation expression builder
Open
good first issue
- Dominant language
- F#
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
```fsharp
module Option =
type Builder() =
member __.Bind(x, f) =
Option.bind f x
member __.Return x = Some x
member __.ReturnFrom x = x
let builder = Builder()
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Start with the repository's existing Containers.Option module and inspect how similar computation expression builders are organized. Implement the builder and members shown in the issue, then run the repository's available build or test command to confirm the Option computation expression is usable.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- fsharp
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Active
- Clarity
- Mostly clear
- Newbie friendliness
- 68/100