dart_exceptor 1.1.0
dart_exceptor: ^1.1.0 copied to clipboard
A lightweight, idiomatic Dart result type. Built on Dart 3 with zero dependencies. Features Trace<T,E>, Ok, Err, split, map, mapError and bind.
example/main.dart
import 'exception.dart';
import 'package:dart_exceptor/src/trace/base/itrace.dart';
void main() {
//lets test the resultx implementatrion
}
typedef ITrace<T> = Trace<T, IException>;