https://github.com/nekronos/resultsharp
Result type for C#
https://github.com/nekronos/resultsharp
c-sharp error-handling functional-programming result-type
Last synced: 7 days ago
JSON representation
Result type for C#
- Host: GitHub
- URL: https://github.com/nekronos/resultsharp
- Owner: nekronos
- License: mit
- Created: 2020-03-26T16:03:17.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-02T09:54:35.000Z (8 months ago)
- Last Synced: 2025-04-18T14:24:42.334Z (about 1 month ago)
- Topics: c-sharp, error-handling, functional-programming, result-type
- Language: C#
- Homepage:
- Size: 134 KB
- Stars: 5
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ResultSharp
[](https://github.com/nekronos/ResultSharp/actions)
[](https://www.nuget.org/packages/ResultSharp/)This library provides an implmentation of a Result monad. With its API inspired by [Rust's Result type](https://doc.rust-lang.org/std/result/enum.Result.html)
## Usage```c#
using ResultSharp;
using static ResultSharp.Prelude;
```