LanguageExt 0.0.3-beta

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

// Install LanguageExt as a Cake Tool
#tool nuget:?package=LanguageExt&version=0.0.3-beta&prerelease

Using and abusing the features of C# 6 to provide lots of helper functions and types, which, if you squint, can look like extensions to the language itself.

This package brings functional helpers for classic C# problems:

Poor tuple support
Null reference problem
Lack of lambda and expression inference
Void isn't a real type
Mutable lists and dictionaries
The awful 'out' parameter

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.2-beta 103 4/16/2015
0.1.1-beta 66 2/19/2015
0.0.14-beta 40 2/4/2015
0.0.12-beta 42 1/15/2015
0.0.11-beta 35 1/15/2015
0.0.10-beta 38 1/15/2015
0.0.8-beta 123 11/23/2014
0.0.7-beta 64 11/22/2014
0.0.6-beta 65 11/22/2014
0.0.4-beta 71 11/21/2014
0.0.3-beta 124 11/20/2014
0.0.2-beta 193 11/19/2014
0.0.1-beta 262 11/19/2014

Option and Either updates

- Some(null) now doesn't coerce to a None, a ValueIsNullException will be thrown

- Some(Nullable<T>) supported, will coerce the Value to Some if HasValue is true, otherwise  a ValueIsNullException will be thrown

- Right(Nullable<T>)/Right(Nullable<T>) supported, will coerce the Value to Right/Left if HasValue is true, otherwise  a ValueIsNullException will be thrown

- SomeUnsafe added : Allows Some(null) and allows the Some and None branches of match to return null.

- RightUnsafe/LeftUnsafe added : Allows Right(null) and Left(null) and allows the Right and Left branches of match to return null.

- Added IsUnsafe to Option<T>

https://github.com/louthy/language-ext/issues/5