CSharp.Made.Functional 2.1.2

dotnet add package CSharp.Made.Functional --version 2.1.2
NuGet\Install-Package CSharp.Made.Functional -Version 2.1.2
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="CSharp.Made.Functional" Version="2.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CSharp.Made.Functional --version 2.1.2
#r "nuget: CSharp.Made.Functional, 2.1.2"
#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 CSharp.Made.Functional as a Cake Addin
#addin nuget:?package=CSharp.Made.Functional&version=2.1.2

// Install CSharp.Made.Functional as a Cake Tool
#tool nuget:?package=CSharp.Made.Functional&version=2.1.2

CSharp.Made.Functional

codecov

Add CSharp.Made.Functional

dotnet add package CSharp.Made.Functional

Using statements

The namespace does not match the package name to keep using statements shorter.

// Base using statement:
global using Functional;

// To use Option types:
global using Functional.Options;

// To use Result types:
global using Functional.Results;

// To use Union types:
global using Functional.Unions;

// For extension methods like Pipe/Tap:
global using Functional.Common;

// For exception handling extensions:
global using static Functional.Exceptions.ExceptionExtensions;

// For static methods like Cons:
global using static Functional.Common.CommonExtensions;

// Other usings for other static methods:
global using static Functional.Options.OptionExtensions;
global using static Functional.Results.ResultExtensions;

For examples and more discussion about this library, Read the Docs!

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.2 91 4/4/2024
2.1.1 73 3/26/2024
2.1.0 157 12/31/2023
2.0.1 137 12/6/2023
2.0.0 130 11/26/2023
1.0.13 118 11/7/2023
1.0.12 113 9/18/2023
1.0.11 122 9/6/2023
1.0.10 101 9/6/2023
1.0.9 120 9/2/2023
1.0.8 113 9/1/2023
1.0.7 114 9/1/2023
1.0.6 136 8/29/2023
1.0.5 118 8/29/2023
1.0.4 129 8/28/2023
1.0.3 129 8/28/2023
1.0.2 127 8/22/2023
1.0.1 117 8/21/2023
1.0.0 136 8/14/2023

Remove class constraints from Option.Map.