Compare commits

..

3 commits

Author SHA1 Message Date
246d15de38
chore: add copyright header
All checks were successful
default / dotnet default workflow (8.0) (push) Successful in 34s
2024-05-01 18:37:20 +02:00
165e0c5c26
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-01 18:26:15 +02:00
60f548d88d
chore: add README and LICENSE to describe project 2024-05-01 18:03:11 +02:00

View file

@ -1,7 +1,7 @@
# `Geekeey.Extensions.Result` # `Geekeey.Extensions.Result`
Result is a .NET library which provides a Result<T> type for representing the outcome of operations in C#. It offers a A .NET library provides a Result<T> type for representing the outcome of operations in C#. It offers a clean and concise
clean and concise way to handle success and failure scenarios, promoting better error handling and code readability. 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();
}); });
``` ```