https://github.com/milandjurdjevic/either
Functional-style error handling in C# using a simple Either implementation.
https://github.com/milandjurdjevic/either
csharp error-handling functional-programming monads
Last synced: 5 months ago
JSON representation
Functional-style error handling in C# using a simple Either implementation.
- Host: GitHub
- URL: https://github.com/milandjurdjevic/either
- Owner: milandjurdjevic
- Created: 2025-04-11T00:53:29.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-06-17T00:24:29.000Z (5 months ago)
- Last Synced: 2025-06-17T01:27:52.049Z (5 months ago)
- Topics: csharp, error-handling, functional-programming, monads
- Language: C#
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Either
An example implementation of the Either pattern in C#, showcasing functional-style error handling with a generic
`Either` type to represent success `TOk` or failure `TError` results.