LanguageExt 0.1.2-beta

This is a prerelease version of LanguageExt.
dotnet add package LanguageExt --version 0.1.2-beta
                    
NuGet\Install-Package LanguageExt -Version 0.1.2-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.1.2-beta" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LanguageExt" Version="0.1.2-beta" />
                    
Directory.Packages.props
<PackageReference Include="LanguageExt" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add LanguageExt --version 0.1.2-beta
                    
#r "nuget: LanguageExt, 0.1.2-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.
#addin nuget:?package=LanguageExt&version=0.1.2-beta&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=LanguageExt&version=0.1.2-beta&prerelease
                    
Install as a Cake Tool

Using and abusing the features of C# 6 to provide lots of 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 104 4/16/2015
0.1.1-beta 67 2/19/2015
0.0.14-beta 41 2/4/2015
0.0.12-beta 43 1/15/2015
0.0.11-beta 36 1/15/2015
0.0.10-beta 39 1/15/2015
0.0.8-beta 124 11/23/2014
0.0.7-beta 65 11/22/2014
0.0.6-beta 66 11/22/2014
0.0.4-beta 72 11/21/2014
0.0.3-beta 125 11/20/2014
0.0.2-beta 195 11/19/2014
0.0.1-beta 263 11/19/2014

Deprecated headSafe
Added headOrNone for safely finding the optional head item in a collection
Added Query namespace (static class) for working with IQueryable.  Has functions:
- headOrNone
- tail
- map
- filter
- choose
- collect
- sum
- rev
- append
- fold
- foldBack
- reduce
- reduceBack
- find
- freeze
- zip
- length
- iter
- forall
- distinct
- take
- takeWhile
- exists
Option and Some TypeConverter support