result_class

Last updated:

0 purchases

result_class Image
result_class Images
Add to Cart

Description:

result class

Result #
A class that for transparent error propagation and handling similar to Rusts result
You can do computations with values without having to check for validity with the map-method.
final r = const Result<int, String>.ok(2);
final r1 = r.map((value) => value * 2);
assert(r1.contains(4));
copied to clipboard
It's also possible to flatMap a function that returns a Result over the value to prevent nesting of [Result]s
Result<int, String> failable(int i) => i > 5
? const Result.err("Some error happened")
: Result.ok(i * 2);

final s = const Result<int, String>.ok(10);
final s1 = s.flatMap(failable);
assert(s1.containsErr("Some error happened"));
copied to clipboard
mapErr and flatMapErr provide equivalent functionality for errors.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.