Compare commits

..

3 commits

Author SHA1 Message Date
0ff9cfd8fb
chore: add copyright header 2024-05-10 22:20:09 +02:00
5330ecc133
chore: remove async naming rule
Remove the async naming rule as the tooling does not really work out to detecting the right usage of the `Async` suffix.
2024-05-10 22:20:09 +02:00
58a3666eac
chore: add README and LICENSE to describe project 2024-05-10 22:20:09 +02:00

View file

@ -1,7 +1,7 @@
# `Geekeey.Extensions.Result` # `Geekeey.Extensions.Result`
A .NET library provides a Result<T> type for representing the outcome of operations in C#. It offers a clean and concise Result is a .NET library which provides a Result<T> type for representing the outcome of operations in C#. It offers a
way to handle success and failure scenarios, promoting better error handling and code readability. clean and concise way to handle success and failure scenarios, promoting better error handling and code readability.
## Features ## Features
@ -68,4 +68,4 @@ _ = await Prelude.Try(() => File.ReadAllLines("i_do_not_exist.txt"))
var results = await Task.WhenAll(list.Select(DoSomeThing).ToArray()); var results = await Task.WhenAll(list.Select(DoSomeThing).ToArray());
return results.Join(); return results.Join();
}); });
``` ```