Skip to content

Commit

Permalink
2024-03-06 Graph, Collection
Browse files Browse the repository at this point in the history
  • Loading branch information
nomagicisreal committed Mar 5, 2024
1 parent b7b9d5b commit 50e2d16
Show file tree
Hide file tree
Showing 9 changed files with 685 additions and 425 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## 0.0.1 ~ 0.0.12
## 0.0.1 ~ 0.0.13
- Initial version.
4 changes: 3 additions & 1 deletion bin/cmd.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// import 'dart:async';
import 'package:damath/src/math/api.dart';

void main(List<String> arguments) {
final Iterable<int> list = <int>[2, 5, 2];
print(list.anyIsEqual);
}
2 changes: 1 addition & 1 deletion lib/src/async/extension.dart
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ extension FTimer on Timer {
}

static Timer sequencing(List<Duration> steps, List<Listener> listeners) =>
_sequence(steps.combine(listeners));
_sequence(steps.forEachCombine(listeners));
}

extension FTimerConsumer on Consumer<Timer> {
Expand Down
Loading

0 comments on commit 50e2d16

Please sign in to comment.