Metadata >> NuGet >> Option

Option

Metadata

Authors Tom Jacques
Copyrights Copyright 2013
Description Binaries for the Option type. Visit https://github.com/tejacques/Option for an overview and usage examples.
LicenseUrl https://github.com/tejacques/Option/blob/master/LICENSE
Owners Tom Jacques
ProjectUrl https://github.com/tejacques/Option/
ReleaseNotes Version Release Notes: Version 3.0.1: - Fix target to .NET 3.5 Version 3.0.0: - Breaking Changes: - Option is now a struct (value type). - Option now no longer has subclasses None and Some (since it is a struct) - Namespace changed from System.Option to Functional.Option - Implicit Conversion from Option<T> to <T> has been removed. - Option now implements IEnumerable<T> - ToOption() extension method added for regular and Nullable types. - Pattern matching is now a function call in the form: option.Match( None: () => { /* Action when the Option is None */ }, Some: value => { /* Action when the Option is Some<T> */ }); var result = option.Match( None: () => "None", Some: value => value.ToString());
RequireLicenseAcceptance False
Summary An open source Option type for C#.
Tags Option Some None Maybe Functional
Title Option
PackageSize 25255
PackageHashAlgorithm SHA512
PackageHash ExV6iJT8WdbSktScREhnAQq+VKCdw3ffMhx2DRdUySm0wsXCGI8wBymnoSGnWQqS7otF1Q5bYEYhbTlUSn4Amw==
DownloadCount 000000
CreatedDate 2015-03-13T15:44:30

Access

You can access data for this project using the tools and addresses described below.

NuGet (nuget.exe)

Installing the package (HTTP Basic authentication):
nuget install Option -Source     http://nuget.gw.symbolsource.org/Public/NuGet/FeedService.mvc
Installing the package (pre-authenticated):
nuget install Option -Source     http://nuget.gw.symbolsource.org/Public/%login%/%key%/NuGet/FeedService.mvc

NuGet (Package Manager Console)

Installing the package (search all configured feeds):
Install-Package Option
Installing the package (HTTP Basic authentication):
Install-Package Option -Source     http://nuget.gw.symbolsource.org/Public/NuGet/FeedService.mvc
Installing the package (pre-authenticated):
Install-Package Option -Source     http://nuget.gw.symbolsource.org/Public/%login%/%key%/NuGet/FeedService.mvc
Uinstalling the package:
Uninstall-Package Option

OpenWrap

Installing the package:
o add-wrap Option
Uninstalling the package:
o remove-wrap Option

Versions

A version is snapshot of a project's source code. It does not need to follow the Major.Minor.Revision.Build numbering pattern. It can be an arbitrary string of text that identifies a release or a build, in particular including meaningful words like beta, RC or RTM.

Name Related
3.0.1
3.0.0
2.0.2
2.0.1
2.0.0
1.0.1
1.0.0