Result provides an alternative error handling mechanism, avoiding throwing exceptions and a better data flow control.

v0.1.0 2021-02-17 20:49 UTC

This package is auto-updated.

Last update: 2024-04-14 08:55:40 UTC


README

CI Type coverage Code coverage

🎁 Result provides an alternative error handling mechanism, avoiding throwing exceptions or using nulls.

Heavily inspired by Rust's Result.

Why avoid nulls?

TODO: Talk about null-safety.

Why avoid exceptions?

TODO: Talk about resilience.