SuccincT 3.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package SuccincT --version 3.0.0
NuGet\Install-Package SuccincT -Version 3.0.0
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="SuccincT" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SuccincT --version 3.0.0
#r "nuget: SuccincT, 3.0.0"
#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 SuccincT as a Cake Addin
#addin nuget:?package=SuccincT&version=3.0.0

// Install SuccincT as a Cake Tool
#tool nuget:?package=SuccincT&version=3.0.0

Succinc<T> is a .NET library that adds a number of functional features to C#:
* Discriminated unions,
* Pattern matching,
* Partial applications,
* "Implicitly" typed lambdas,
* The ability to treat void methods as Unit functions,
* Replacements for TryParse methods that return an Option<T> (or Maybe<T>, if you prefer), rather than using the out parameter anti-pattern.
* "cons" support for IEnumerable<T> (add elements to the head of an enumeration, or split an enumeration into its head element and an enumeration containing the remaining items, all without repeatedly enumerating that enumerable).
* Indexed enumerations,
* Cycle() methods that endlessly repeat an enumeration, again without repeatedly enumerating that enumerable).
* Replacements for IEnumerable<T>'s XXXOrDefault methods that return an Option<T> (or Maybe<T>, if you prefer), avoiding null and the "did it return a value, or the default?" problem,
* And finally, basic parameter piping support.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.0 is compatible.  netstandard1.1 was computed.  netstandard1.2 was computed.  netstandard1.3 was computed.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wp8 was computed.  wp81 was computed.  wpa81 was computed. 
Windows Store netcore was computed.  netcore45 was computed.  netcore451 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on SuccincT:

Package Downloads
SuccincT.JSON

SuccincT.JSON adds JSON serialization support to Succinc<T>, a .NET library that adds a number of functional features to C#.

Converto.SuccincT

A C# library which gives you basic functions for type conversion and object transformation

ReduxSimple.DevTools

Simple Stupid Redux Store using Reactive Extensions

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on SuccincT:

Repository Stars
Odonno/ReduxSimple
Simple Stupid Redux Store using Reactive Extensions
Version Downloads Last updated
4.0.0 38,448 2/17/2020
3.2.0 34,067 5/17/2018
3.1.0 8,551 2/12/2018
3.0.1 10,107 6/27/2017
3.0.0 1,564 5/25/2017
2.3.0 18,895 3/8/2017
2.2.0 1,314 1/25/2017
2.1.0 1,449 8/26/2016
2.0.0 1,263 6/28/2016
1.6.0 1,556 4/18/2016
1.5.1 1,343 1/12/2016
1.5.0 1,365 11/4/2015
1.4.1 1,262 10/19/2015
1.4.0 1,325 9/22/2015
1.3.2 1,302 7/1/2015
1.3.0 1,286 6/30/2015
1.2.0 1,337 6/23/2015
1.1.0 1,278 6/22/2015
1.0.0 1,316 6/17/2015

V3.0.0 re-introduces support for dotnet core, along with many other frameworks, by switching to being a .netstandard 1.0 library. In addition it brings C# 7 support with cons that now works via a deconstructor, pattern matching on value tuples and indexed enumerations. Please note it alos includes some breaking changes (thus the major version number increase). See the project site for details.