Skip to content

Commit

Permalink
feat!: migrate to Dart 3 (#25)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Migrated to Dart 3 and new types. `Product` types were
removed in favor of records. `Coproduct` types were removed in favor of
sealed classes. `Either` is also a sealed class so that you can
pattern-match it.
  • Loading branch information
ookami-kb committed May 10, 2023
1 parent 778ebba commit ad524d0
Show file tree
Hide file tree
Showing 12 changed files with 69 additions and 1,043 deletions.
2 changes: 0 additions & 2 deletions lib/dfunc.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ export 'src/cast.dart';
export 'src/compact.dart';
export 'src/complement.dart';
export 'src/compose.dart';
export 'src/coproduct/coproduct.dart';
export 'src/either/either.dart';
export 'src/either/eithers.dart';
export 'src/either/extensions.dart';
Expand All @@ -28,7 +27,6 @@ export 'src/map_indexed.dart';
export 'src/maybe.dart';
export 'src/optional.dart';
export 'src/pipe.dart';
export 'src/product/product.dart';
export 'src/scope.dart';
export 'src/string_ext.dart';
export 'src/substring.dart';
Expand Down
Loading

0 comments on commit ad524d0

Please sign in to comment.