Option 3.0.0
See the version list below for details.
Install-Package Option -Version 3.0.0
dotnet add package Option --version 3.0.0
<PackageReference Include="Option" Version="3.0.0" />
paket add Option --version 3.0.0
#r "nuget: Option, 3.0.0"
// Install Option as a Cake Addin
#addin nuget:?package=Option&version=3.0.0
// Install Option as a Cake Tool
#tool nuget:?package=Option&version=3.0.0
Binaries for the Option type.
Visit https://github.com/tejacques/Option for an overview and usage examples.
Product | Versions |
---|---|
.NET Framework | net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
This package has 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 Release Notes:
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());