Funzo 2.0.0
See the version list below for details.
dotnet add package Funzo --version 2.0.0
NuGet\Install-Package Funzo -Version 2.0.0
<PackageReference Include="Funzo" Version="2.0.0" />
<PackageVersion Include="Funzo" Version="2.0.0" />
<PackageReference Include="Funzo" />
paket add Funzo --version 2.0.0
#r "nuget: Funzo, 2.0.0"
#:package Funzo@2.0.0
#addin nuget:?package=Funzo&version=2.0.0
#tool nuget:?package=Funzo&version=2.0.0
Funzo
Contents
Where do we come from
This package was previously called OptionTypes, but given that now more things are being added, I think a new name could fit better. So Funzo it is. Sounds fine.
Apart from the name, the Maybe<T> class was renamed to Option<T>. It is more common than Maybe<T> so I thought it would be better for people to identity it.
Description
Funzo allows the developer to use some classes more commonly used in functional programming for error-proof programming and better type definition. It contains 4 classes:
The
Unitclass represents an empty class. Because functions always return something,Unitis the equivalent tovoidThe
Option<T>class allows to create an item of type T that may have no value. This value cannot be accessed in an unsafe manner by design, making really easy to completely remove null references from your code and reducing the number ofNullReferenceExceptionexceptions thrown.The
Result<TOk, TErr>class represents an operation that has been completed. This reduces the number oftry/catchblocks needed to manage application flow, making error management explicit and ending with more reliable code.The
Union<T1, T2>and all its siblings allows you to create union types. This is pretty similar to theOneOflibrary (in fact, heavily inspired in it), but here you will NOT be able to get values without checking first.
Usage
Unit
Unit is a helper type to represent the absence of a return value (think of it as void). Because in functional programming every function returns a value, it is added here for compatibility.
Option
Create a new Option using one of the helper methods (Option.FromValue, Option.Some, and Option.None):
var optionInt = Option.Some(1);
var optionFloat = Option.FromValue(12);
string? nullableString = null;
var optionString = Option.FromValue(nullableString);
Map its content using the Map method:
var optionText = await ReadTextFromFile(filePath);
var uppercaseText = optionText.Map(text => text.ToUpper());
You can also map to another Option and it will be flatten:
var number = Option.FromValue(1);
// double type is Option<int>
var double = number.Map(x => Option.FromValue(x * 2));
If you want to check both options, use the Match method:
let user = await GetUser();
var userName = user.Match(x => x.Name, () => "User not found");
In case you want to provide a fallback value, you can use ValueOr:
var optionUserName = await GetUserName();
var userName = optionUserName.ValueOr("Unknown user");
In case you want to do something if there is a value present, you can use the IsSome method:
Option<User> optionUser = await GetUser();
if(!optionUser.IsSome(out User user))
{
return Results.NotFound();
}
var posts = postService.GetPostsByUserId(user.Id);
You can force the value out using the Unwrap method. This approach is not recommended:
var optionValue = Option.Some(1);
var value = optionValue.Unwrap() // 1
var optionString = Option<string>.None();
optionString.Unwrap(); // throws NullReferenceException
There are also extension methods for Task<Option<T>> so you can chain Map, Match, ValueOr, and Unwrap to your tasks.
var userBalance = GetUser() // GetUser returns a Task<Option<User>>
.Map(user => bankService.GetAccounts(user.Id))
.Map(accounts => accounts.Sum(a => a.Balance))
.ValueOr(0m);
In case you want to do something with the value first, you can use the Inspect function:
Option<User> maybeUser = GetUser();
user.Inspect(user => Console.WriteLine($"Retrieved user {user.Name}");
Result
You can create an instance using the Ok/Err static methods:
var okResult = Result<Unit, ProcessError>.Ok(default);
var errorResult = Result<Unit, ProcessError>.Err(ProcessError.DatabaseConnection);
You can map the ok value or err value using Map and MapErr methods:
var okResult = Result<int, Exception>.Ok(3).Map(x => x*2)); // Ok(6)
var errResult = Result<Unit, string>.Err("failure").MapErr(x => x.ToUpper()); // Err("FAILURE")
To provide handlers for both cases, which should be the normal usage, use the Match method:
var result = await CreateUser();
result.Match(
user => Results.Created("/user", { id: user.Id }),
err => err switch {
CreateUserError.EmailExists => Results.Conflict(),
_ => Results.BadRequest()
});
Sometimes you only want to know if an operation has completed successfully to get the ok value. You can use the Ok method:
var parsingResult = ParseLines(path);
var linesParsed = parsingResult.Ok().ValueOr(0);
Console.WriteLine($"Parsed {linesParsed} lines");
In order to get early returns when needed, there is an IsErr method:
Result<User, string> userCreationResult = await CreateUser(userPayload);
if (userCreationResult.IsErr(out User user, out string error))
{
return Result<Unit, UserCreationError>.Err(UserCreationError.CannotCreateUser);
}
var userRoleResult = await AssignRoles(user, Roles.Admin);
if (userRoleResult.IsErr(out var roleError))
{
return Result<Unit, UserCreationError>.Err(UserCreationError.CannotAssignRole);
}
emailService.NotifyUser(user.Email);
As with Option, there are some extensions in Task to be able to chain methods:
public async IResult Post([FromBody] UserPayload payload)
=> await CreateUser(payload).Match<IResult>(
user => Results.Created("/user", { id: user.Id }),
err => err switch {
CreateUserError.EmailExists => Results.Conflict(),
_ => Results.BadRequest()
});
Same as Option, we have 2 new methods: Inspect and InspectErr in case you want to do something with the values without actually changing anything.
Union
Unions represent a variable that can be of several different types. At the moment, there are only unions for 5 generic types max. This was on purpose, as it usually more than 5 means you need a refactor to group some of them (at least in my opinion). If you need more, feel free to use the Funzo.Generator project and change the ordinality to whatever you need.
You can create an instance by using the constructor or by implicitly converting from it:
var union = new Union<int, string, DateTime>("text");
Union<int, string, DateTime> newUnion = 44;
To check if the union is from an specific type, you can use the Is method:
Union<int, string, DateTime> union = "text";
if (union.Is<string>(out var text))
{
Console.WriteLine("Union is a string");
}
If you want to do different actions depending on the inner value, you can use the Switch or the Match methods:
Union<int, string, DateTime> union = DateTime.UtcNow;
var typeOfDate = union.Match(
i => "Unix timestamp",
s => "ISO string",
d => "DateTime");
union.Switch(
i => Console.WriteLine("Unix timestamp"),
s => Console.WriteLine("ISO string"),
d => Console.WriteLine("DateTime"))
Unions in this package don't have a .Value property and they will never have.
Design philosophy
The idea behind this small package was to provide Option/Result monads that work idiomatically with C#, whithout losing the essence of them.
In order to achieve this, an approach of Explicit better than implicit was used:
- When working with
Option, minimize the posibility ofNullReferenceExceptionby limiting the options to get the value out, enforcing the developer to handle all the cases. - When working with
Result, minimize the risk of unforseen consequences (λ) by encouraging to use theMatchstatement. - Unions don't have the possibility of getting the value explicitly, forcing the developer to use the
Ismethod orSwitch/Match - Encourage the usage of Error values, let it be records with some payload or enums, that provide useful information and force the developer to take action for each one of them. By being explicit in what kind of errors can pop out, the developer is forced to handle all the cases than can go wrong and not rely on catch blocks.
What's missing
Because of the limitations of C#, some things cannot be achieved. Here's a small list:
- In order to create a
Result, both types should be specified. This is annoying, because when you are using large class names, you end up doing:
This can be mitigated by usingpublic async Task<Result<CreateUserReturnValue, CreateUserError>> CreateUser(CreateUserPayload payload) { ... if (**somecondition**) { return Result<CreateUserReturnValue, CreateUserError>.Err(...); } ... }usingalias like this:using CreateUserResult = Funzo.Result<UseCases.CreateUserReturnValue, UseCases.CreateUserError>; public async Task<CreateUserResult> CreateUser(CreateUserPayload payload) { ... if (**somecondition**) { return CreateUserResult.Err(...); } ... } Result<Unit, _>feels weird, as you have to manually doResult<Unit, _>.Ok(default)orResult<Unit, _>.Ok(new Unit()). No workaround for this I'm afraid.- Early returns feel off. I would've loved to have something similar to Rust's question mark, but
Option.IsSomeandResult.IsErrare the closest things I could think of. - The absence of
union types/discriminated unions/closed enumsmake managing the different options underwhelming and unreliable if you are not careful. If you have a method like this:
enum ProcessError
{
FailureA,
FailureB
}
Result<Unit, ProcessError> DoProcess() { ... }
public void Run()
{
var result = DoProcess();
result.Match(_ => Console.WriteLine("Success"),
err => err switch
{
ProcessError.FailureA => Console.WriteLine("FailureA"),
ProcessError.FailureB => Console.WriteLine("FailureB"),
});
}
You may think that you are handling everything, as the enum only has 2 options, but you would receive a warning.
This is because enums are int in C#, so you could do (ProcessError)435627 and pass.
Their proposed solution is to add a general case _ => WHATEVER but this is exactly what this library is trying to avoid. Again, the goal is to be explicit, because if you add a default case, you will not receive a warning nor an error when you add another error in ProcessError. So the only option for now is to disable the rule. Ending like this:
enum ProcessError
{
FailureA,
FailureB
}
Result<Unit, ProcessError> DoProcess() { ... }
public void Run()
{
var result = DoProcess();
result.Match(_ => Console.WriteLine("Success"),
#pragma warning disable CS8524 // The switch expression does not handle some values of its input type (it is not exhaustive) involving an unnamed enum value.
err => err switch
{
ProcessError.FailureA => Console.WriteLine("FailureA"),
ProcessError.FailureB => Console.WriteLine("FailureB"),
});
#pragma warning restore CS8524 // The switch expression does not handle some values of its input type (it is not exhaustive) involving an unnamed enum value.
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
-
.NETStandard 2.1
- No dependencies.
-
net8.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Funzo:
| Package | Downloads |
|---|---|
|
Funzo.Serialization
Contains serialization helpers for Result, Option and Union types |
GitHub repositories
This package is not used by any popular GitHub repositories.