![]() |
VOOZH | about |
dotnet add package PowMaybeErr --version 0.2.0
NuGet\Install-Package PowMaybeErr -Version 0.2.0
<PackageReference Include="PowMaybeErr" Version="0.2.0" />
<PackageVersion Include="PowMaybeErr" Version="0.2.0" />Directory.Packages.props
<PackageReference Include="PowMaybeErr" />Project file
paket add PowMaybeErr --version 0.2.0
#r "nuget: PowMaybeErr, 0.2.0"
#:package PowMaybeErr@0.2.0
#addin nuget:?package=PowMaybeErr&version=0.2.0Install as a Cake Addin
#tool nuget:?package=PowMaybeErr&version=0.2.0Install as a Cake Tool
Lightweight Maybe monad library to simplify code that can fail.
It will help you transform code like this:
Person? ParsePage(string url)
{
var html = client.Query(url);
if (html == null)
return null;
var root = Html.GetRoot(html);
var node = root.SelectSingleNode("xpath query");
if (node == null)
return null;
var personInfo = Utils.ParseNode(node);
if (personInfo == null)
return null;
return new Person(personInfo);
}
Into this:
Maybe<Person> ParsePage(string url) =>
from html in Utils.Query(url)
let root = Utils.GetRoot(html)
from node in root.MaySelectSingleNode("xpath query")
from personInfo in Utils.MayParseNode(node)
select new Person(personInfo);
The result is:
It will not apply for all the code everywhere, but when it does apply it will drastically reduce the potential for bugs.
var a = May.Some(47);
var b = May.None<string>();
// nullable reference -> Maybe<>
var mayPerson = person.ToMaybe();
// Maybe<> -> nullable reference
var person = mayPerson.ToNullable();
Maybe<string> QueryHtml(string url);
Maybe<Person> ParsePerson(string html);
// use any number of from/in statements with a select at the end
Maybe<Person> QueryAndParse(string url) =>
from html in QueryHtml(url)
from person in ParsePerson(html)
where person.Name != "John" // you can also use where statements
select parson;
Maybe<Person> mayPerson = ...
if (mayPerson.IsSome(out var person))
{
// Success, you can access person here
}
else
{
// Failure
}
Person person = mayPerson.Ensure(); // throws an Exception if mayPerson is None
Person person = mayPerson.FailWith(peter); // returns peter if mayPerson is None
IEnumerable<T> WhereSome<T>(this IEnumerable<Maybe<T>> source);
Maybe<T> FirstOrMaybe<T>(this IEnumerable<T> source, Func<T, bool>? predicate = null)
// and similar LastOrMaybe
// Examples
// ========
new [] { May.Some(4), May.None<int>() May.Some(12) }.WhereSome();
// int[] { 4, 12 }
new [] { 2, 6, 5 }.FirstOrMaybe(e => e % 3 == 0)
// Some(6)
new [] { 2, 6, 5 }.FirstOrMaybe(e => e % 3 == 1)
// None<int>()
Let's say you want to read your configuration from multiple sources:
And once a source returns a configuration, you do not want to read the other sources.
You could write it this way:
Maybe<Config> ReadFromEnvVars();
Maybe<Config> ReadFromArgs(string[] args);
Maybe<Config> ReadFromFile(string file);
Maybe<Config> ReadConfig(string[] args, string file) =>
new[]
{
() => ReadFromEnvVars(),
() => ReadFromArgs(args),
() => ReadFromFile(file),
}
.Select(readFun => readFun())
.WhereSome()
.FirstOrMaybe();
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 4 NuGet packages that depend on PowMaybeErr:
| Package | Downloads |
|---|---|
|
PowLINQPad
Reactive control and utilities for LINQPad |
|
|
PowWeb
Puppeteer and Chrome DOMSnapshot API wrapper |
|
|
ImdbLib
IMDB scraping |
|
|
ParserLib
Parsing utilities |
This package is not used by any popular GitHub repositories.