ResultifyCore 1.0.1

dotnet add package ResultifyCore --version 1.0.1                
NuGet\Install-Package ResultifyCore -Version 1.0.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ResultifyCore" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ResultifyCore --version 1.0.1                
#r "nuget: ResultifyCore, 1.0.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ResultifyCore as a Cake Addin
#addin nuget:?package=ResultifyCore&version=1.0.1

// Install ResultifyCore as a Cake Tool
#tool nuget:?package=ResultifyCore&version=1.0.1                

ResultifyCore

ResultifyCore is a .NET library providing Result and Option patterns to simplify error handling and optional values. It includes extension methods for fluent API support and enhanced readability.

Installation

You can install the ResultifyCore package via NuGet:

dotnet add package ResultifyCore

Or you can use the NuGet Package Manager:

Install-Package ResultifyCore

Usage

Result Pattern

The Result pattern represents the outcome of an operation that can either succeed or fail.

Creating a Result
using ResultifyCore;

var successResult = Result<int>.Succ(42);
var failureResult = Result<int>.Fail(new Exception("Something went wrong"));
Match Method
var matchResult = successResult.Match<string>(
    onSuccess: value => "success",
    onFailure: ex => "error"
);
Console.WriteLine(matchResult);

Method Chaining
successResult
    .Do(res => Console.WriteLine("Executing common action"))
    .OnSuccess(value => Console.WriteLine($"Success with value: {value}"))
    .OnError(ex => Console.WriteLine($"Error: {ex.Message}"))
    .Tap(value => Console.WriteLine($"Tap into value: {value}"))
    .Map(value => value * 2)
    .OnSuccess(value => Console.WriteLine($"Transformed value: {value}"));

failureResult
    .Do(res => Console.WriteLine("Executing common action"))
    .OnSuccess(value => Console.WriteLine($"Success with value: {value}"))
    .OnError(ex => Console.WriteLine($"Error: {ex.Message}"))
    .Tap(value => Console.WriteLine($"Tap into value: {value}"))
    .Map(value => value * 2)
    .OnSuccess(value => Console.WriteLine($"Transformed value: {value}"));

Option Pattern

The Option pattern represents an optional value that may or may not be present.

Creating an Option
using ResultifyCore;

var someOption = Option<int>.Some(42);
var noneOption = Option<int>.None;
Match Method
var matchOptionResult = someOption.Match<string>(
    onSome: value => "some",
    onNone: () => "none"
);
Console.WriteLine(matchOptionResult);

Method Chaining
someOption
    .Do(opt => Console.WriteLine("Executing common action"))
    .OnSome(value => Console.WriteLine($"Option has value: {value}"))
    .OnNone(() => Console.WriteLine("Option has no value"))
    .Tap(value => Console.WriteLine($"Tap into value: {value}"))
    .Map(value => value * 2)
    .OnSome(value => Console.WriteLine($"Transformed value: {value}"));

noneOption
    .Do(opt => Console.WriteLine("Executing common action"))
    .OnSome(value => Console.WriteLine($"Option has value: {value}"))
    .OnNone(() => Console.WriteLine("Option has no value"))
    .Tap(value => Console.WriteLine($"Tap into value: {value}"))
    .Map(value => value * 2)
    .OnSome(value => Console.WriteLine($"Transformed value: {value}"));

Extensions

ResultifyCore provides several extension methods to facilitate fluent API and method chaining.

Result Extensions
  • Do: Executes an action regardless of the result state.
  • OnSuccess: Executes an action if the result is successful.
  • OnError: Executes an action if the result is failed.
  • Map: Transforms the value inside a successful result.
  • Bind: Chains multiple operations that return results.
  • Tap: Executes a side-effect action without altering the result.
Option Extensions
  • Do: Executes an action regardless of whether the option has a value.
  • OnSome: Executes an action if the option has a value.
  • OnNone: Executes an action if the option does not have a value.
  • Map: Transforms the value inside an option.
  • Bind: Chains multiple operations that return options.
  • Tap: Executes a side-effect action without altering the option.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ResultifyCore:

Package Downloads
MediatorForge

MediatorForge is a comprehensive library designed to streamline the implementation of common patterns in .NET applications. It includes: - Fluent Validation integration for seamless validation of requests. - Authorization logic to ensure secure access control. - Logging behaviors to monitor and record request processing. - Command and Query handling using Mediator pattern. - Support for Result and Option types to handle outcomes effectively. The library simplifies handling cross-cutting concerns, enhancing readability and maintainability of your codebase.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 58 12/25/2024
1.0.0 139 12/6/2024