Option 2.0.2
See the version list below for details.
dotnet add package Option --version 2.0.2
NuGet\Install-Package Option -Version 2.0.2
<PackageReference Include="Option" Version="2.0.2" />
paket add Option --version 2.0.2
#r "nuget: Option, 2.0.2"
// Install Option as a Cake Addin #addin nuget:?package=Option&version=2.0.2 // Install Option as a Cake Tool #tool nuget:?package=Option&version=2.0.2
Binaries for the Option type.
Visit https://github.com/tejacques/Option for an overview and usage examples.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net35 is compatible. net40 was computed. net403 was computed. 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. |
This package has no dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Option:
Package | Downloads |
---|---|
LOGQ
Logical programming tool with Prolog-styled features and object to fact mapping. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Option:
Repository | Stars |
---|---|
tejacques/AsyncBridge
A library to help bridge C# async method execution from synchronous methods, such as in Windows Forms and ASP.NET.
|
Version Release Notes:
Version 2.0.2:
- Fix DebuggerDisplay
- Add Documentation to Option<T>.Some;
Version 2.0.1:
- Allow Some<T> to have its value updated.
- OptionPatternMatcher's default value Option value is now Option.None.
- Fix edge case inequality operator.
Version 2.0.0:
- Added functional pattern matching as a fluent API to Options in the form:
var matcher = Option<T>.PatternMatch()
.None(() => { /* Action when the Option is None */ })
.Some(value, () => { /* Action when the Option is value */ })
.Some((value) => { /* Action when the Option is Some<T> */ });
matcher.Result(Option<T> option); /* Will run the appropriately matched action on the option */
These are also present as instance functions on Option<T>:
Option<int> option = getOptionFromMethodCall();
var result = option.Match<string>()
.None(() => "None")
.Some(0, () => "Zero")
.Some((value) => value.ToString())
.Result();
- Pattern matching matches one and only one pattern.
- Tests have 100% code coverage.
- New Some<T> and None<T> classes.
- Breaking Changes:
- From() method replaced with Some().
- ToOption() extension method has been removed.
Version 1.0.1:
- Include documentation.
Version 1.0.0:
- Adds the Option type to the System.Option namespace.