We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f7016 commit a21ff4cCopy full SHA for a21ff4c
1 file changed
bin/benchmark/action_benchmark.dart
@@ -6,10 +6,7 @@ void main() {
6
runChars('action - cast', any().cast(), 255);
7
runChars('action - castList', any().star().castList(), 255);
8
runChars('action - flatten', any().flatten(), 255);
9
- runChars('action - map (no side-effects)',
10
- any().map((_) {}, hasSideEffects: false), 255);
11
- runChars('action - map (with side-effects)',
12
- any().map((_) {}, hasSideEffects: true), 255);
+ runChars('action - map', any().map((_) {}), 255);
13
runChars('action - permute', any().star().permute([0]), 255);
14
runChars('action - pick', any().star().pick(0), 255);
15
runChars('action - token', any().token(), 255);
0 commit comments