pie_core 0.2.14

A high-performance, index-based data structure toolkit. Provides an arena allocator (ElemPool) used to build a cache-friendly PieList (doubly-linked list) and FibHeap (priority queue).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
   Compiling proc-macro2 v1.0.106
    Building [                           ] 0/121: proc-macro2(build.rs)                                                                                                     
   Compiling libc v0.2.183
   Compiling cfg-if v1.0.4
   Compiling quote v1.0.45
   Compiling unicode-ident v1.0.24
   Compiling zerocopy v0.8.42
   Compiling crossbeam-utils v0.8.21
   Compiling serde_core v1.0.228
   Compiling getrandom v0.3.4
   Compiling rand_core v0.10.0
   Compiling getrandom v0.4.2
   Compiling autocfg v1.5.0
   Compiling zmij v1.0.21
   Compiling find-msvc-tools v0.1.9
   Compiling serde v1.0.228
   Compiling equivalent v1.0.2
   Compiling foldhash v0.2.0
   Compiling rustix v1.1.4
   Compiling allocator-api2 v0.2.21
   Compiling shlex v1.3.0
    Building [                           ] 0/121: shlex, crossbeam-utils(build.rs), getrandom(build.rs), foldhash, rand_core, libc(build.rs), zerocopy(build.rs), zmij(bu...
   Compiling bitflags v2.11.0
    Building [                           ] 1/121: shlex, crossbeam-utils(build.rs), getrandom(build.rs), foldhash, rand_core, libc(build.rs), zerocopy(build.rs), zmij(bu...
   Compiling either v1.15.0
    Building [                           ] 2/121: shlex, either, crossbeam-utils(build.rs), getrandom(build.rs), foldhash, rand_core, libc(build.rs), zerocopy(build.rs),...
   Compiling rayon-core v1.13.0
    Building [                           ] 3/121: shlex, either, crossbeam-utils(build.rs), getrandom(build.rs), foldhash, rand_core, libc(build.rs), zerocopy(build.rs),...
    Building [                           ] 4/121: shlex, either, crossbeam-utils(build.rs), foldhash, rand_core, libc(build.rs), zerocopy(build.rs), zmij(build.rs), getr...
   Compiling cc v1.2.57
    Building [>                          ] 5/121: shlex, either, crossbeam-utils(build.rs), foldhash, rand_core, libc(build.rs), zerocopy(build.rs), zmij(build.rs), find...
   Compiling linux-raw-sys v0.12.1
    Building [>                          ] 6/121: either, crossbeam-utils(build.rs), foldhash, rand_core, libc(build.rs), zerocopy(build.rs), zmij(build.rs), linux-raw-s...
    Building [>                          ] 7/121: either, crossbeam-utils(build.rs), foldhash, rand_core, libc(build.rs), zerocopy(build.rs), linux-raw-sys, find-msvc-to...
   Compiling serde_json v1.0.149
    Building [>                          ] 8/121: either, crossbeam-utils(build.rs), foldhash, libc(build.rs), zerocopy(build.rs), linux-raw-sys, serde_json(build.rs), f...
   Compiling regex-syntax v0.8.10
    Building [=>                         ] 9/121: either, crossbeam-utils(build.rs), foldhash, libc(build.rs), zerocopy(build.rs), linux-raw-sys, serde_json(build.rs), f...
    Building [=>                        ] 11/121: either, crossbeam-utils(build.rs), foldhash, libc(build.rs), zerocopy(build.rs), linux-raw-sys, serde_json(build.rs), z...
   Compiling foldhash v0.1.5
    Building [=>                        ] 12/121: crossbeam-utils(build.rs), foldhash, libc(build.rs), zerocopy(build.rs), linux-raw-sys, serde_json(build.rs), zmij, ray...
   Compiling anstyle v1.0.14
    Building [=>                        ] 13/121: crossbeam-utils(build.rs), libc(build.rs), zerocopy(build.rs), linux-raw-sys, serde_json(build.rs), zmij, rayon-core(bu...
    Building [==>                       ] 14/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), linux-raw-sys, serde_json(build.rs), zmij, r...
    Building [==>                       ] 15/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), linux-raw-sys, rayon-core(build), serde_json...
   Compiling fastrand v2.3.0
    Building [==>                       ] 16/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, serde_json(build.rs...
    Building [==>                       ] 17/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, serde_json(build.rs...
    Building [==>                       ] 18/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, serde_json(build.rs...
   Compiling ciborium-io v0.2.2
    Building [===>                      ] 19/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, serde_json(build.rs...
   Compiling itoa v1.0.17
    Building [===>                      ] 20/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, itoa, serde_json(bu...
    Building [===>                      ] 21/121: crossbeam-utils(build.rs), getrandom(build), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, i...
   Compiling clap_lex v1.1.0
    Building [===>                      ] 22/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, itoa, serde_json(bu...
   Compiling once_cell v1.21.4
    Building [===>                      ] 23/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, itoa, serde_json(bu...
   Compiling memchr v2.8.0
    Building [====>                     ] 24/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), zerocopy(build.rs), fastrand, linux-raw-sys, itoa, serde_json(bu...
    Building [====>                     ] 25/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), fastrand, linux-raw-sys, itoa, serde_json(build.rs), zmij, regex...
   Compiling plotters-backend v0.3.7
    Building [====>                     ] 26/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), fastrand, linux-raw-sys, itoa, serde_json(build.rs), zmij, regex...
   Compiling hashbrown v0.15.5
    Building [====>                     ] 27/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), fastrand, linux-raw-sys, itoa, serde_json(build.rs), zmij, regex...
    Building [=====>                    ] 28/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), fastrand, linux-raw-sys, itoa, serde_json(build.rs), zmij, regex...
    Building [=====>                    ] 29/121: crossbeam-utils(build.rs), serde_json(build), serde_core, libc(build.rs), fastrand, linux-raw-sys, itoa, zmij, regex-sy...
   Compiling itertools v0.13.0
    Building [=====>                    ] 30/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, itoa, zmij, regex-syntax, on...
   Compiling hashbrown v0.16.1
    Building [=====>                    ] 31/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, itoa, hashbrown, zmij, regex...
   Compiling clap_builder v4.6.0
    Building [=====>                    ] 32/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, itoa, hashbrown, zmij, regex...
   Compiling bit-vec v0.8.0
    Building [======>                   ] 33/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, itoa, hashbrown, zmij, regex...
   Compiling num-traits v0.2.19
    Building [======>                   ] 34/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, itoa, hashbrown, zmij, num-t...
   Compiling same-file v1.0.6
    Building [======>                   ] 35/121: crossbeam-utils(build.rs), serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, same-file, hashbrown, zmij, ...
    Building [======>                   ] 36/121: serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, same-file, hashbrown, zmij, num-traits(build.rs), regex...
    Building [======>                   ] 37/121: serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, same-file, hashbrown, zmij, num-traits(build.rs), regex...
   Compiling cast v0.3.0
    Building [=======>                  ] 38/121: serde_core, libc(build.rs), itertools, fastrand, linux-raw-sys, same-file, hashbrown, zmij, num-traits(build.rs), regex...
    Building [=======>                  ] 39/121: libc(build), serde_core, itertools, fastrand, linux-raw-sys, same-file, hashbrown, zmij, num-traits(build.rs), regex-sy...
   Compiling fixedbitset v0.5.7
    Building [=======>                  ] 40/121: fixedbitset, libc(build), serde_core, itertools, fastrand, linux-raw-sys, same-file, hashbrown, zmij, num-traits(build....
   Compiling quick-error v1.2.3
    Building [=======>                  ] 41/121: fixedbitset, quick-error, libc(build), serde_core, itertools, fastrand, linux-raw-sys, same-file, hashbrown, num-traits...
   Compiling fnv v1.0.7
    Building [========>                 ] 42/121: fixedbitset, quick-error, fnv, libc(build), serde_core, itertools, linux-raw-sys, same-file, hashbrown, num-traits(buil...
    Building [========>                 ] 43/121: fixedbitset, quick-error, fnv, libc(build), serde_core, proc-macro2(build), itertools, linux-raw-sys, same-file, hashbr...
    Building [========>                 ] 44/121: fixedbitset, quick-error, fnv, serde_core, proc-macro2(build), itertools, linux-raw-sys, same-file, hashbrown, num-trai...
   Compiling plotters-svg v0.3.7
    Building [========>                 ] 45/121: fixedbitset, quick-error, fnv, plotters-svg, serde_core, proc-macro2(build), itertools, linux-raw-sys, hashbrown, num-t...
   Compiling cpufeatures v0.3.0
    Building [========>                 ] 46/121: fixedbitset, quick-error, plotters-svg, serde_core, proc-macro2(build), itertools, linux-raw-sys, hashbrown, num-traits...
    Building [=========>                ] 47/121: fixedbitset, quick-error, plotters-svg, serde_core, itertools, linux-raw-sys, hashbrown, num-traits(build.rs), regex-sy...
    Building [=========>                ] 48/121: fixedbitset, quick-error, plotters-svg, serde_core, itertools, linux-raw-sys, hashbrown, regex-syntax, proc-macro2, has...
   Compiling chacha20 v0.10.0
    Building [=========>                ] 49/121: fixedbitset, quick-error, plotters-svg, serde_core, chacha20, itertools, linux-raw-sys, hashbrown, regex-syntax, proc-m...
   Compiling walkdir v2.5.0
    Building [=========>                ] 50/121: fixedbitset, plotters-svg, serde_core, chacha20, itertools, linux-raw-sys, hashbrown, regex-syntax, proc-macro2, hashbr...
    Building [=========>                ] 51/121: fixedbitset, plotters-svg, serde_core, chacha20, itertools, rustix, hashbrown, regex-syntax, proc-macro2, hashbrown, cl...
   Compiling bit-set v0.8.0
    Building [==========>               ] 52/121: fixedbitset, plotters-svg, serde_core, chacha20, itertools, rustix, hashbrown, regex-syntax, proc-macro2, hashbrown, cl...
   Compiling oorandom v11.1.5
    Building [==========>               ] 53/121: fixedbitset, plotters-svg, serde_core, chacha20, itertools, rustix, oorandom, hashbrown, regex-syntax, proc-macro2, has...
   Compiling anes v0.1.6
    Building [==========>               ] 54/121: fixedbitset, plotters-svg, serde_core, chacha20, itertools, rustix, oorandom, hashbrown, anes, regex-syntax, proc-macro...
    Building [==========>               ] 55/121: fixedbitset, plotters-svg, serde_core, chacha20, itertools, rustix, oorandom, hashbrown, anes, regex-syntax, proc-macro...
   Compiling unarray v0.1.4
    Building [===========>              ] 56/121: fixedbitset, plotters-svg, serde_core, chacha20, itertools, rustix, hashbrown, anes, regex-syntax, proc-macro2, hashbro...
   Compiling index_list v0.3.3
    Building [===========>              ] 57/121: chacha20, itertools, rustix, anes, regex-syntax, proc-macro2, hashbrown, index_list, num-traits, walkdir, unarray, fixe...
   Compiling fibonacci_heap v0.9.1
    Building [===========>              ] 58/121: chacha20, itertools, rustix, anes, regex-syntax, proc-macro2, hashbrown, index_list, num-traits, walkdir, unarray, fixe...
    Building [===========>              ] 59/121: chacha20, itertools, rustix, anes, regex-syntax, proc-macro2, hashbrown, index_list, num-traits, walkdir, fixedbitset, ...
    Building [===========>              ] 60/121: itertools, rustix, anes, regex-syntax, proc-macro2, hashbrown, index_list, num-traits, walkdir, fixedbitset, serde_core...
    Building [============>             ] 61/121: itertools, rustix, regex-syntax, proc-macro2, hashbrown, index_list, num-traits, walkdir, fixedbitset, serde_core, hash...
    Building [============>             ] 62/121: itertools, rustix, regex-syntax, proc-macro2, hashbrown, num-traits, walkdir, fixedbitset, serde_core, hashbrown, fibon...
   Compiling crossbeam-epoch v0.9.18
    Building [============>             ] 62/121: itertools, rustix, crossbeam-epoch, regex-syntax, proc-macro2, hashbrown, num-traits, walkdir, fixedbitset, serde_core,...
    Building [============>             ] 63/121: itertools, rustix, crossbeam-epoch, regex-syntax, proc-macro2, hashbrown, num-traits, walkdir, serde_core, hashbrown, f...
    Building [=============>            ] 67/121: itertools, rustix, crossbeam-epoch, regex-syntax, proc-macro2, num-traits, serde_core, hashbrown, clap_builder, quote, ...
    Building [=============>            ] 68/121: itertools, rustix, crossbeam-epoch, regex-syntax, num-traits, serde_core, hashbrown, clap_builder, quote, cc, libc, memchr
   Compiling indexmap v2.13.0
    Building [=============>            ] 68/121: indexmap, itertools, rustix, crossbeam-epoch, regex-syntax, num-traits, serde_core, hashbrown, clap_builder, quote, cc,...
    Building [=============>            ] 69/121: indexmap, itertools, rustix, crossbeam-epoch, regex-syntax, num-traits, serde_core, clap_builder, quote, cc, libc, memchr 
   Compiling syn v2.0.117
    Building [=============>            ] 69/121: indexmap, itertools, rustix, crossbeam-epoch, regex-syntax, num-traits, syn, serde_core, clap_builder, quote, cc, libc,...
   Compiling crossbeam-deque v0.8.6
    Building [=============>            ] 69/121: indexmap, itertools, rustix, crossbeam-epoch, regex-syntax, crossbeam-deque, num-traits, syn, serde_core, clap_builder,...
   Compiling wait-timeout v0.2.1
   Compiling page_size v0.6.0
    Building [=============>            ] 69/121: indexmap, itertools, rustix, crossbeam-epoch, getrandom, regex-syntax, crossbeam-deque, wait-timeout, page_size, num-tr...
    Building [==============>           ] 70/121: indexmap, itertools, rustix, crossbeam-epoch, getrandom, regex-syntax, crossbeam-deque, wait-timeout, page_size, num-tr...
   Compiling alloca v0.4.0
    Building [==============>           ] 71/121: indexmap, alloca(build.rs), itertools, rustix, crossbeam-epoch, getrandom, regex-syntax, crossbeam-deque, wait-timeout,...
    Building [==============>           ] 72/121: indexmap, alloca(build.rs), itertools, rustix, crossbeam-epoch, getrandom, regex-syntax, crossbeam-deque, wait-timeout,...
    Building [==============>           ] 73/121: indexmap, alloca(build.rs), itertools, rustix, crossbeam-epoch, getrandom, regex-syntax, crossbeam-deque, wait-timeout,...
    Building [==============>           ] 74/121: indexmap, alloca(build.rs), itertools, rustix, crossbeam-epoch, getrandom, regex-syntax, crossbeam-deque, wait-timeout,...
    Building [===============>          ] 75/121: indexmap, alloca(build.rs), itertools, rustix, getrandom, regex-syntax, crossbeam-deque, wait-timeout, num-traits, syn,...
   Compiling plotters v0.3.7
    Building [===============>          ] 75/121: indexmap, plotters, alloca(build.rs), itertools, rustix, getrandom, regex-syntax, crossbeam-deque, wait-timeout, num-tr...
    Building [===============>          ] 76/121: indexmap, plotters, alloca(build.rs), itertools, rustix, getrandom, regex-syntax, wait-timeout, num-traits, syn, serde_...
    Building [===============>          ] 77/121: indexmap, plotters, alloca(build.rs), itertools, rustix, getrandom, regex-syntax, wait-timeout, syn, serde_core, getran...
    Building [===============>          ] 78/121: indexmap, plotters, alloca(build), itertools, rustix, getrandom, regex-syntax, wait-timeout, syn, serde_core, getrandom...
   Compiling rand_core v0.9.5
    Building [===============>          ] 78/121: indexmap, plotters, alloca(build), itertools, rustix, getrandom, regex-syntax, wait-timeout, syn, serde_core, rand_core...
   Compiling rand v0.10.0
    Building [===============>          ] 78/121: indexmap, plotters, alloca(build), itertools, rustix, getrandom, regex-syntax, wait-timeout, syn, serde_core, rand_core...
    Building [===============>          ] 79/121: indexmap, plotters, alloca(build), itertools, rustix, regex-syntax, wait-timeout, syn, serde_core, rand_core, getrandom...
    Building [================>         ] 80/121: indexmap, plotters, alloca(build), itertools, rustix, regex-syntax, wait-timeout, syn, serde_core, rand_core, rand, ray...
    Building [================>         ] 81/121: indexmap, plotters, alloca(build), itertools, rustix, regex-syntax, syn, serde_core, rand_core, rand, rayon-core, clap_...
   Compiling rand_xorshift v0.4.0
   Compiling rand v0.9.2
    Building [================>         ] 81/121: indexmap, plotters, alloca(build), rand_xorshift, itertools, rustix, regex-syntax, syn, serde_core, rand_core, rand, ra...
    Building [================>         ] 82/121: indexmap, plotters, alloca(build), rand_xorshift, itertools, rustix, regex-syntax, syn, serde_core, rand, rayon-core, c...
    Building [================>         ] 83/121: indexmap, plotters, alloca(build), itertools, rustix, regex-syntax, syn, serde_core, rand, rayon-core, clap_builder, rand 
   Compiling rayon v1.11.0
    Building [================>         ] 83/121: indexmap, plotters, alloca(build), itertools, rustix, regex-syntax, syn, serde_core, rayon, rand, rayon-core, clap_buil...
    Building [=================>        ] 84/121: indexmap, plotters, itertools, rustix, alloca, regex-syntax, syn, serde_core, rayon, rand, rayon-core, clap_builder, rand 
   Compiling tempfile v3.27.0
    Building [=================>        ] 84/121: indexmap, plotters, itertools, rustix, alloca, regex-syntax, syn, serde_core, tempfile, rayon, rand, rayon-core, clap_b...
   Compiling petgraph v0.8.3
   Compiling priority-queue v2.7.0
    Building [=================>        ] 85/121: indexmap, plotters, itertools, rustix, petgraph, regex-syntax, syn, priority-queue, serde_core, tempfile, rayon, rand, ...
    Building [=================>        ] 86/121: plotters, itertools, rustix, petgraph, regex-syntax, syn, priority-queue, serde_core, tempfile, rayon, rand, rayon-core...
   Compiling regex-automata v0.4.14
    Building [=================>        ] 86/121: plotters, regex-automata, itertools, rustix, petgraph, regex-syntax, syn, priority-queue, serde_core, tempfile, rayon, ...
   Compiling rusty-fork v0.3.1
    Building [=================>        ] 86/121: plotters, regex-automata, itertools, rustix, petgraph, regex-syntax, rusty-fork, syn, priority-queue, serde_core, tempf...
   Compiling criterion-plot v0.8.2
    Building [=================>        ] 86/121: plotters, regex-automata, itertools, rustix, petgraph, regex-syntax, rusty-fork, syn, priority-queue, serde_core, crite...
   Compiling clap v4.6.0
    Building [=================>        ] 86/121: plotters, regex-automata, itertools, rustix, petgraph, clap, regex-syntax, rusty-fork, syn, priority-queue, serde_core,...
    Building [=================>        ] 87/121: plotters, regex-automata, itertools, rustix, petgraph, regex-syntax, rusty-fork, syn, priority-queue, serde_core, crite...
    Building [=================>        ] 88/121: plotters, regex-automata, itertools, rustix, petgraph, regex-syntax, rusty-fork, syn, priority-queue, serde_core, crite...
    Building [==================>       ] 89/121: plotters, regex-automata, rustix, petgraph, regex-syntax, rusty-fork, syn, priority-queue, serde_core, criterion-plot, ...
    Building [==================>       ] 90/121: plotters, regex-automata, rustix, petgraph, regex-syntax, rusty-fork, syn, priority-queue, serde_core, criterion-plot, ...
    Building [==================>       ] 91/121: plotters, regex-automata, rustix, petgraph, regex-syntax, rusty-fork, syn, serde_core, criterion-plot, tempfile, rayon,...
    Building [==================>       ] 92/121: plotters, regex-automata, rustix, petgraph, regex-syntax, rusty-fork, syn, serde_core, criterion-plot, tempfile, rayon,...
    Building [==================>       ] 93/121: plotters, regex-automata, petgraph, regex-syntax, rusty-fork, syn, serde_core, criterion-plot, tempfile, rayon, clap_bu...
    Building [===================>      ] 94/121: plotters, regex-automata, petgraph, regex-syntax, rusty-fork, syn, serde_core, criterion-plot, rayon, clap_builder        
    Building [===================>      ] 95/121: plotters, regex-automata, petgraph, regex-syntax, syn, serde_core, criterion-plot, rayon, clap_builder                    
    Building [===================>      ] 96/121: regex-automata, petgraph, regex-syntax, syn, serde_core, criterion-plot, rayon, clap_builder                              
    Building [===================>      ] 96/121: regex-automata, petgraph, regex-syntax, syn, serde_core, criterion-plot, rayon, clap_builder, serde_json                  
    Building [===================>      ] 97/121: regex-automata, petgraph, regex-syntax, syn, serde_core, rayon, clap_builder, serde_json                                  
    Building [====================>     ] 98/121: regex-automata, petgraph, regex-syntax, syn, rayon, clap_builder, serde_json                                              
   Compiling regex v1.12.3
    Building [====================>     ] 98/121: regex-automata, regex, petgraph, regex-syntax, syn, rayon, clap_builder, serde_json                                       
   Compiling zerocopy-derive v0.8.42
   Compiling serde_derive v1.0.228
    Building [====================>     ] 99/121: regex-automata, serde_derive, regex, petgraph, regex-syntax, rayon, clap_builder, zerocopy-derive, serde_json             
   Compiling pie_core v0.2.14 (/opt/stefan/rust/github/pie_core)
    Building [====================>     ] 99/121: regex-automata, serde_derive, regex, petgraph, regex-syntax, pie_core, rayon, clap_builder, zerocopy-derive, serde_json   
    Building [===================>     ] 100/121: regex-automata, serde_derive, regex, petgraph, regex-syntax, pie_core, clap_builder, zerocopy-derive, serde_json          
    Building [===================>     ] 101/121: regex-automata, serde_derive, regex, regex-syntax, pie_core, clap_builder, zerocopy-derive, serde_json                    
    Building [====================>    ] 102/121: regex-automata, serde_derive, regex-syntax, pie_core, clap_builder, zerocopy-derive, serde_json                           
    Building [====================>    ] 103/121: regex-automata, serde_derive, regex-syntax, pie_core, clap_builder, zerocopy-derive                                       
    Building [====================>    ] 104/121: regex-automata, serde_derive, regex-syntax, clap_builder, zerocopy-derive                                                 
    Building [====================>    ] 105/121: regex-automata, serde_derive, clap_builder, zerocopy-derive                                                               
    Building [====================>    ] 106/121: regex-automata, serde_derive, zerocopy, clap_builder                                                                      
    Building [=====================>   ] 107/121: serde_derive, zerocopy, clap_builder                                                                                      
    Building [=====================>   ] 108/121: serde, zerocopy, clap_builder                                                                                             
    Building [=====================>   ] 109/121: serde, zerocopy                                                                                                           
   Compiling tinytemplate v1.2.1
    Building [=====================>   ] 109/121: serde, tinytemplate, zerocopy                                                                                             
    Building [=====================>   ] 110/121: tinytemplate, zerocopy                                                                                                    
    Building [=====================>   ] 111/121: zerocopy                                                                                                                  
   Compiling half v2.7.1
   Compiling ppv-lite86 v0.2.21
    Building [=====================>   ] 111/121: half, zerocopy, ppv-lite86                                                                                                
    Building [======================>  ] 112/121: half, ppv-lite86                                                                                                          
   Compiling ciborium-ll v0.2.2
    Building [======================>  ] 112/121: half, ciborium-ll, ppv-lite86                                                                                             
    Building [======================>  ] 113/121: ciborium-ll, ppv-lite86                                                                                                   
   Compiling rand_chacha v0.9.0
    Building [======================>  ] 113/121: ciborium-ll, rand_chacha, ppv-lite86                                                                                      
    Building [======================>  ] 114/121: ciborium-ll, rand_chacha                                                                                                  
   Compiling ciborium v0.2.2
    Building [======================>  ] 114/121: ciborium-ll, rand_chacha, ciborium                                                                                        
   Compiling proptest v1.10.0
    Building [======================>  ] 114/121: ciborium-ll, proptest, rand_chacha, ciborium                                                                              
    Building [======================>  ] 115/121: proptest, rand_chacha, ciborium                                                                                           
    Building [======================>  ] 116/121: proptest, ciborium                                                                                                        
   Compiling criterion v0.8.2
    Building [======================>  ] 116/121: proptest, criterion, ciborium                                                                                             
    Building [=======================> ] 117/121: proptest, criterion                                                                                                       
    Building [=======================> ] 118/121: criterion                                                                                                                 
    Building [=======================> ] 119/121: benches(bench)                                                                                                            
    Building [=======================> ] 119/121: benches(bench), pie_core(test)                                                                                            
    Building [=======================> ] 120/121: benches(bench)                                                                                                            
    Finished ]8;;https://doc.rust-lang.org/cargo/reference/profiles.html#default-profiles\`bench` profile [optimized]]8;;\ target(s) in 34.35s
     Running unittests src/lib.rs (target/release/deps/pie_core-c42c15c3d2a722f5)

running 170 tests
test cursor::tests::move_from_before_start_to_first ... ignored(B
test cursor::tests::move_next_and_index ... ignored(B
test cursor::tests::move_next_and_peek ... ignored(B
test cursor::tests::move_next_at_end_should_be_noop ... ignored(B
test cursor::tests::move_prev_and_index ... ignored(B
test cursor::tests::move_prev_and_peek ... ignored(B
test cursor::tests::move_prev_at_start_should_be_noop ... ignored(B
test cursor::tests::move_to_front_and_back ... ignored(B
test cursor::tests::move_to_front_and_back_on_empty_list ... ignored(B
test cursor::tests::new_cursor_on_empty_list ... ignored(B
test cursor::tests::new_cursor_on_non_empty_list ... ignored(B
test cursor_mut::tests::test_cursor_nav_edges ... ignored(B
test cursor_mut::tests::test_error_conditions ... ignored(B
test cursor_mut::tests::test_insert_after ... ignored(B
test cursor_mut::tests::test_insert_at_edges ... ignored(B
test cursor_mut::tests::test_remove_current_edges ... ignored(B
test cursor_mut::tests::test_split_and_splice ... ignored(B
test cursor_mut::tests::test_split_splice_large ... ignored(B
test cursor_mut::tests::test_split_splice_repeated_no_leak ... ignored(B
test elem::tests::test_data_operations ... ignored(B
test elem::tests::test_default_creation ... ignored(B
test elem::tests::test_generation_bump ... ignored(B
test elem::tests::test_link_operations ... ignored(B
test elem::tests::test_self_ref_creation ... ignored(B
test elem::tests::test_state_transitions ... ignored(B
test generation::tests::test_all_bits_set ... ignored(B
test generation::tests::test_bump_increments_counter ... ignored(B
test generation::tests::test_counter_does_not_affect_state ... ignored(B
test generation::tests::test_counter_wrapping ... ignored(B
test generation::tests::test_debug_format ... ignored(B
test generation::tests::test_default ... ignored(B
test generation::tests::test_display_format ... ignored(B
test generation::tests::test_elem_state_size ... ignored(B
test generation::tests::test_equality ... ignored(B
test generation::tests::test_from_raw_roundtrip ... ignored(B
test generation::tests::test_generation_overflow_cycle ... ignored(B
test generation::tests::test_generation_overflow_wraps ... ignored(B
test generation::tests::test_generation_size ... ignored(B
test generation::tests::test_hash ... ignored(B
test generation::tests::test_matches ... ignored(B
test generation::tests::test_new_free ... ignored(B
test generation::tests::test_new_sentinel ... ignored(B
test generation::tests::test_new_used ... ignored(B
test generation::tests::test_new_zombie ... ignored(B
test generation::tests::test_raw_encoding ... ignored(B
test generation::tests::test_same_counter ... ignored(B
test generation::tests::test_sentinel_lifecycle ... ignored(B
test generation::tests::test_state_bit_values ... ignored(B
test generation::tests::test_state_bits_roundtrip ... ignored(B
test generation::tests::test_state_display ... ignored(B
test generation::tests::test_typical_lifecycle ... ignored(B
test generation::tests::test_with_state_preserves_counter ... ignored(B
test heap::tests::test_clear ... ignored(B
test heap::tests::test_clear_then_reuse ... ignored(B
test heap::tests::test_consolidation ... ignored(B
test heap::tests::test_consolidation_large ... ignored(B
test heap::tests::test_decrease_key_cascading_cut ... ignored(B
test heap::tests::test_decrease_key_invalid_handle_diagnostic ... ignored(B
test heap::tests::test_decrease_key_many ... ignored(B
test heap::tests::test_decrease_key_panic ... ignored(B
test heap::tests::test_decrease_key_simple ... ignored(B
test heap::tests::test_decrease_key_to_new_min ... ignored(B
test heap::tests::test_decrease_key_with_cut ... ignored(B
test heap::tests::test_deep_cascading_cuts ... ignored(B
test heap::tests::test_default ... ignored(B
test heap::tests::test_default_then_use ... ignored(B
test heap::tests::test_drain ... ignored(B
test heap::tests::test_drain_is_fused ... ignored(B
test heap::tests::test_drain_partial_consumption ... ignored(B
test heap::tests::test_drain_size_hint ... ignored(B
test heap::tests::test_drop ... ignored(B
test heap::tests::test_new_empty_len ... ignored(B
test heap::tests::test_pop ... ignored(B
test heap::tests::test_pop_empty ... ignored(B
test heap::tests::test_push_and_peek ... ignored(B
test heap::tests::test_push_pop_interleaved_large ... ignored(B
test heap::tests::test_shrink_empty_and_single ... ignored(B
test heap::tests::test_shrink_handle_usability ... ignored(B
test heap::tests::test_shrink_structural_stress ... ignored(B
test heap::tests::test_try_push ... ignored(B
test index::tests::test_creation_and_constants ... ignored(B
test index::tests::test_default ... ignored(B
test index::tests::test_equality ... ignored(B
test index::tests::test_from_usize_truncation ... ignored(B
test index::tests::test_get ... ignored(B
test index::tests::test_hash ... ignored(B
test index::tests::test_ord_includes_vers ... ignored(B
test index::tests::test_state_checks ... ignored(B
test list::tests::test_append ... ignored(B
test list::tests::test_clear ... ignored(B
test list::tests::test_clear_debug ... ignored(B
test list::tests::test_clear_large_list ... ignored(B
test list::tests::test_cursor_at_out_of_bounds ... ignored(B
test list::tests::test_cursor_at_out_of_bounds_nonempty ... ignored(B
test list::tests::test_cursor_mut_at_out_of_bounds ... ignored(B
test list::tests::test_cursor_mut_at_out_of_bounds_nonempty ... ignored(B
test list::tests::test_drain ... ignored(B
test list::tests::test_drain_double_ended ... ignored(B
test list::tests::test_drain_drop ... ignored(B
test list::tests::test_drain_size_hint ... ignored(B
test list::tests::test_front_back_mut ... ignored(B
test list::tests::test_iter ... ignored(B
test list::tests::test_iter_double_ended ... ignored(B
test list::tests::test_iter_fused ... ignored(B
test list::tests::test_iter_mut ... ignored(B
test list::tests::test_iter_mut_double_ended ... ignored(B
test list::tests::test_iter_mut_size_hint ... ignored(B
test list::tests::test_iter_size_hint ... ignored(B
test list::tests::test_multiple_lists_in_one_pool ... ignored(B
test list::tests::test_new_list ... ignored(B
test list::tests::test_prepend ... ignored(B
test list::tests::test_push_and_pop ... ignored(B
test list::tests::test_retain_empty_list ... ignored(B
test list::tests::test_retain_keep_all ... ignored(B
test list::tests::test_retain_keep_even ... ignored(B
test list::tests::test_retain_remove_all ... ignored(B
test list::tests::test_sort ... ignored(B
test list::tests::test_sort_all_equal ... ignored(B
test list::tests::test_sort_concurrent_lists_shared_pool ... ignored(B
test list::tests::test_sort_large_all_equal ... ignored(B
test list::tests::test_sort_large_list ... ignored(B
test list::tests::test_sort_no_pool_leak ... ignored(B
test list::tests::test_sort_repeated_no_leak ... ignored(B
test list::tests::test_sort_stability ... ignored(B
test pool::tests::test_contains ... ignored(B
test pool::tests::test_del_and_reuse ... ignored(B
test pool::tests::test_del_errors ... ignored(B
test pool::tests::test_index_new_and_len ... ignored(B
test pool::tests::test_linking_logic ... ignored(B
test pool::tests::test_pool_creation_and_len ... ignored(B
test pool::tests::test_reserve ... ignored(B
test pool::tests::test_reset_empty_pool ... ignored(B
test pool::tests::test_reset_preserves_capacity ... ignored(B
test pool::tests::test_shrink_randomized_stress ... ignored(B
test pool::tests::test_shrink_simple ... ignored(B
test pool::tests::test_shrink_with_sentinel_move ... ignored(B
test pool::tests::test_validate_index ... ignored(B
test pool::tests::test_validate_integrity_good_pool ... ignored(B
test slot::tests::test_as_raw_and_from_raw ... ignored(B
test slot::tests::test_debug_format ... ignored(B
test slot::tests::test_default_is_none ... ignored(B
test slot::tests::test_display_format ... ignored(B
test slot::tests::test_equality ... ignored(B
test slot::tests::test_from_u32 ... ignored(B
test slot::tests::test_from_usize ... ignored(B
test slot::tests::test_from_usize_trait ... ignored(B
test slot::tests::test_hash ... ignored(B
test slot::tests::test_map ... ignored(B
test slot::tests::test_max_valid_slot ... ignored(B
test slot::tests::test_new_and_get ... ignored(B
test slot::tests::test_none ... ignored(B
test slot::tests::test_question_mark_operator ... ignored(B
test slot::tests::test_slot_size ... ignored(B
test slot::tests::test_unwrap ... ignored(B
test slot::tests::test_unwrap_none_panics - should panic ... ignored(B
test slot::tests::test_unwrap_or ... ignored(B
test slot::tests::test_zero_is_valid ... ignored(B
test view::tests::test_view_debug_impl ... ignored(B
test view::tests::test_view_iteration ... ignored(B
test view::tests::test_view_partial_eq ... ignored(B
test view::tests::test_view_partial_ord ... ignored(B
test view::tests::test_view_with_non_copy_types ... ignored(B
test view_mut::tests::test_extend_appends_to_existing ... ignored(B
test view_mut::tests::test_extend_empty_iterator ... ignored(B
test view_mut::tests::test_extend_from_range ... ignored(B
test view_mut::tests::test_extend_from_vec ... ignored(B
test view_mut::tests::test_view_mut_insert_remove ... ignored(B
test view_mut::tests::test_view_mut_iteration ... ignored(B
test view_mut::tests::test_view_mut_push_pop ... ignored(B
test view_mut::tests::test_view_mut_references ... ignored(B

test result: ok(B. 0 passed; 0 failed; 170 ignored; 0 measured; 0 filtered out; finished in 0.00s

     Running benches/benches.rs (target/release/deps/benches-7d749d9ea0e8716e)
Gnuplot not found, using plotters backend
Benchmarking list/append/pielist/100
Benchmarking list/append/pielist/100: Warming up for 3.0000 s
Benchmarking list/append/pielist/100: Collecting 100 samples in estimated 5.0012 s (13M iterations)
Benchmarking list/append/pielist/100: Analyzing
list/append/pielist/100 time:   [331.71 ns 332.47 ns 333.28 ns]
                        change: [+0.3468% +0.8847% +1.3585%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking list/append/vec/100
Benchmarking list/append/vec/100: Warming up for 3.0000 s
Benchmarking list/append/vec/100: Collecting 100 samples in estimated 5.0002 s (26M iterations)
Benchmarking list/append/vec/100: Analyzing
list/append/vec/100     time:   [188.09 ns 188.84 ns 189.64 ns]
                        change: [−8.0269% −7.2571% −6.5457%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking list/append/vecdeque/100
Benchmarking list/append/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/append/vecdeque/100: Collecting 100 samples in estimated 5.0004 s (28M iterations)
Benchmarking list/append/vecdeque/100: Analyzing
list/append/vecdeque/100
                        time:   [178.73 ns 178.98 ns 179.24 ns]
                        change: [−7.6877% −7.3902% −7.0849%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe
Benchmarking list/append/indexlist/100
Benchmarking list/append/indexlist/100: Warming up for 3.0000 s
Benchmarking list/append/indexlist/100: Collecting 100 samples in estimated 5.0010 s (10M iterations)
Benchmarking list/append/indexlist/100: Analyzing
list/append/indexlist/100
                        time:   [489.08 ns 491.27 ns 493.76 ns]
                        change: [−0.3700% +0.3763% +1.0875%] (p = 0.32 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking list/append/pielist/1000
Benchmarking list/append/pielist/1000: Warming up for 3.0000 s
Benchmarking list/append/pielist/1000: Collecting 100 samples in estimated 5.0051 s (2.2M iterations)
Benchmarking list/append/pielist/1000: Analyzing
list/append/pielist/1000
                        time:   [2.1928 µs 2.1975 µs 2.2025 µs]
                        change: [−1.7147% −1.3067% −0.9504%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking list/append/vec/1000
Benchmarking list/append/vec/1000: Warming up for 3.0000 s
Benchmarking list/append/vec/1000: Collecting 100 samples in estimated 5.0037 s (5.9M iterations)
Benchmarking list/append/vec/1000: Analyzing
list/append/vec/1000    time:   [838.77 ns 841.64 ns 844.63 ns]
                        change: [−0.3721% −0.0126% +0.3435%] (p = 0.95 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild
Benchmarking list/append/vecdeque/1000
Benchmarking list/append/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/append/vecdeque/1000: Collecting 100 samples in estimated 5.0003 s (6.0M iterations)
Benchmarking list/append/vecdeque/1000: Analyzing
list/append/vecdeque/1000
                        time:   [831.55 ns 835.83 ns 840.70 ns]
                        change: [−0.0245% +0.5514% +1.1519%] (p = 0.06 > 0.05)
                        No change in performance detected.
Found 12 outliers among 100 measurements (12.00%)
  12 (12.00%) high mild
Benchmarking list/append/indexlist/1000
Benchmarking list/append/indexlist/1000: Warming up for 3.0000 s
Benchmarking list/append/indexlist/1000: Collecting 100 samples in estimated 5.0062 s (2.2M iterations)
Benchmarking list/append/indexlist/1000: Analyzing
list/append/indexlist/1000
                        time:   [2.3635 µs 2.3849 µs 2.4084 µs]
                        change: [−0.1099% +0.9178% +1.9216%] (p = 0.08 > 0.05)
                        No change in performance detected.
Found 12 outliers among 100 measurements (12.00%)
  6 (6.00%) high mild
  6 (6.00%) high severe
Benchmarking list/append/pielist/10000
Benchmarking list/append/pielist/10000: Warming up for 3.0000 s
Benchmarking list/append/pielist/10000: Collecting 100 samples in estimated 5.0570 s (227k iterations)
Benchmarking list/append/pielist/10000: Analyzing
list/append/pielist/10000
                        time:   [20.516 µs 20.554 µs 20.592 µs]
                        change: [+0.0126% +0.2809% +0.5527%] (p = 0.05 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
Benchmarking list/append/vec/10000
Benchmarking list/append/vec/10000: Warming up for 3.0000 s
Benchmarking list/append/vec/10000: Collecting 100 samples in estimated 5.0094 s (586k iterations)
Benchmarking list/append/vec/10000: Analyzing
list/append/vec/10000   time:   [7.9479 µs 7.9633 µs 7.9788 µs]
                        change: [+1.8121% +2.2977% +2.7623%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking list/append/vecdeque/10000
Benchmarking list/append/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/append/vecdeque/10000: Collecting 100 samples in estimated 5.0159 s (646k iterations)
Benchmarking list/append/vecdeque/10000: Analyzing
list/append/vecdeque/10000
                        time:   [7.7557 µs 7.7743 µs 7.7927 µs]
                        change: [−0.4546% +0.6389% +2.3731%] (p = 0.38 > 0.05)
                        No change in performance detected.
Found 9 outliers among 100 measurements (9.00%)
  2 (2.00%) high mild
  7 (7.00%) high severe
Benchmarking list/append/indexlist/10000
Benchmarking list/append/indexlist/10000: Warming up for 3.0000 s
Benchmarking list/append/indexlist/10000: Collecting 100 samples in estimated 5.1170 s (207k iterations)
Benchmarking list/append/indexlist/10000: Analyzing
list/append/indexlist/10000
                        time:   [27.966 µs 28.179 µs 28.359 µs]
                        change: [−0.9879% −0.0642% +0.9171%] (p = 0.90 > 0.05)
                        No change in performance detected.

Benchmarking list/prepend/pielist/100
Benchmarking list/prepend/pielist/100: Warming up for 3.0000 s
Benchmarking list/prepend/pielist/100: Collecting 100 samples in estimated 5.0013 s (9.2M iterations)
Benchmarking list/prepend/pielist/100: Analyzing
list/prepend/pielist/100
                        time:   [495.69 ns 497.85 ns 499.78 ns]
                        change: [+4.9990% +5.6692% +6.3418%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking list/prepend/vec/100
Benchmarking list/prepend/vec/100: Warming up for 3.0000 s
Benchmarking list/prepend/vec/100: Collecting 100 samples in estimated 5.0025 s (6.4M iterations)
Benchmarking list/prepend/vec/100: Analyzing
list/prepend/vec/100    time:   [777.16 ns 777.81 ns 778.55 ns]
                        change: [+1.1906% +1.5377% +1.8671%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 11 outliers among 100 measurements (11.00%)
  8 (8.00%) high mild
  3 (3.00%) high severe
Benchmarking list/prepend/vecdeque/100
Benchmarking list/prepend/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/prepend/vecdeque/100: Collecting 100 samples in estimated 5.0010 s (23M iterations)
Benchmarking list/prepend/vecdeque/100: Analyzing
list/prepend/vecdeque/100
                        time:   [211.53 ns 212.16 ns 212.78 ns]
                        change: [+0.0716% +0.5486% +1.0284%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Benchmarking list/prepend/indexlist/100
Benchmarking list/prepend/indexlist/100: Warming up for 3.0000 s
Benchmarking list/prepend/indexlist/100: Collecting 100 samples in estimated 5.0011 s (9.8M iterations)
Benchmarking list/prepend/indexlist/100: Analyzing
list/prepend/indexlist/100
                        time:   [505.27 ns 508.34 ns 511.34 ns]
                        change: [+1.6785% +2.4616% +3.2188%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking list/prepend/pielist/1000
Benchmarking list/prepend/pielist/1000: Warming up for 3.0000 s
Benchmarking list/prepend/pielist/1000: Collecting 100 samples in estimated 5.0109 s (1.5M iterations)
Benchmarking list/prepend/pielist/1000: Analyzing
list/prepend/pielist/1000
                        time:   [3.0997 µs 3.1228 µs 3.1472 µs]
                        change: [−2.2293% −1.2238% −0.2450%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Benchmarking list/prepend/vec/1000
Benchmarking list/prepend/vec/1000: Warming up for 3.0000 s
Benchmarking list/prepend/vec/1000: Collecting 100 samples in estimated 5.0180 s (212k iterations)
Benchmarking list/prepend/vec/1000: Analyzing
list/prepend/vec/1000   time:   [23.496 µs 23.595 µs 23.731 µs]
                        change: [−17.827% −17.515% −17.190%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) high mild
  4 (4.00%) high severe
Benchmarking list/prepend/vecdeque/1000
Benchmarking list/prepend/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/prepend/vecdeque/1000: Collecting 100 samples in estimated 5.0035 s (5.8M iterations)
Benchmarking list/prepend/vecdeque/1000: Analyzing
list/prepend/vecdeque/1000
                        time:   [854.71 ns 857.81 ns 861.42 ns]
                        change: [−3.3895% −1.6961% +0.6180%] (p = 0.10 > 0.05)
                        No change in performance detected.
Found 10 outliers among 100 measurements (10.00%)
  3 (3.00%) high mild
  7 (7.00%) high severe
Benchmarking list/prepend/indexlist/1000
Benchmarking list/prepend/indexlist/1000: Warming up for 3.0000 s
Benchmarking list/prepend/indexlist/1000: Collecting 100 samples in estimated 5.0005 s (2.0M iterations)
Benchmarking list/prepend/indexlist/1000: Analyzing
list/prepend/indexlist/1000
                        time:   [2.4535 µs 2.4751 µs 2.4962 µs]
                        change: [+7.1779% +8.5184% +9.8389%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 27 outliers among 100 measurements (27.00%)
  1 (1.00%) low severe
  14 (14.00%) low mild
  10 (10.00%) high mild
  2 (2.00%) high severe
Benchmarking list/prepend/pielist/10000
Benchmarking list/prepend/pielist/10000: Warming up for 3.0000 s
Benchmarking list/prepend/pielist/10000: Collecting 100 samples in estimated 5.0340 s (157k iterations)
Benchmarking list/prepend/pielist/10000: Analyzing
list/prepend/pielist/10000
                        time:   [28.822 µs 29.062 µs 29.288 µs]
                        change: [−1.5056% −0.4786% +0.5233%] (p = 0.35 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking list/prepend/vecdeque/10000
Benchmarking list/prepend/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/prepend/vecdeque/10000: Collecting 100 samples in estimated 5.0287 s (601k iterations)
Benchmarking list/prepend/vecdeque/10000: Analyzing
list/prepend/vecdeque/10000
                        time:   [8.3165 µs 8.3484 µs 8.3820 µs]
                        change: [−2.4546% −1.3676% −0.4171%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  8 (8.00%) high mild
  1 (1.00%) high severe
Benchmarking list/prepend/indexlist/10000
Benchmarking list/prepend/indexlist/10000: Warming up for 3.0000 s
Benchmarking list/prepend/indexlist/10000: Collecting 100 samples in estimated 5.0493 s (187k iterations)
Benchmarking list/prepend/indexlist/10000: Analyzing
list/prepend/indexlist/10000
                        time:   [28.127 µs 28.354 µs 28.548 µs]
                        change: [+2.7691% +3.8571% +5.0153%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 20 outliers among 100 measurements (20.00%)
  14 (14.00%) low severe
  3 (3.00%) low mild
  3 (3.00%) high mild

Benchmarking list/iterate/pielist/100
Benchmarking list/iterate/pielist/100: Warming up for 3.0000 s
Benchmarking list/iterate/pielist/100: Collecting 100 samples in estimated 5.0003 s (33M iterations)
Benchmarking list/iterate/pielist/100: Analyzing
list/iterate/pielist/100
                        time:   [150.00 ns 150.11 ns 150.20 ns]
                        change: [−0.1669% +0.0315% +0.2141%] (p = 0.75 > 0.05)
                        No change in performance detected.
Found 16 outliers among 100 measurements (16.00%)
  2 (2.00%) low severe
  2 (2.00%) low mild
  6 (6.00%) high mild
  6 (6.00%) high severe
Benchmarking list/iterate/vec/100
Benchmarking list/iterate/vec/100: Warming up for 3.0000 s
Benchmarking list/iterate/vec/100: Collecting 100 samples in estimated 5.0000 s (592M iterations)
Benchmarking list/iterate/vec/100: Analyzing
list/iterate/vec/100    time:   [8.3965 ns 8.5111 ns 8.6277 ns]
                        change: [−23.160% −21.604% −19.785%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 8 outliers among 100 measurements (8.00%)
  1 (1.00%) low mild
  7 (7.00%) high mild
Benchmarking list/iterate/vecdeque/100
Benchmarking list/iterate/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/iterate/vecdeque/100: Collecting 100 samples in estimated 5.0000 s (834M iterations)
Benchmarking list/iterate/vecdeque/100: Analyzing
list/iterate/vecdeque/100
                        time:   [5.9754 ns 5.9877 ns 6.0002 ns]
                        change: [+0.5021% +0.7919% +1.0869%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking list/iterate/indexlist/100
Benchmarking list/iterate/indexlist/100: Warming up for 3.0000 s
Benchmarking list/iterate/indexlist/100: Collecting 100 samples in estimated 5.0002 s (46M iterations)
Benchmarking list/iterate/indexlist/100: Analyzing
list/iterate/indexlist/100
                        time:   [108.83 ns 108.88 ns 108.93 ns]
                        change: [−0.5201% −0.2710% −0.0151%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 14 outliers among 100 measurements (14.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  5 (5.00%) high mild
  6 (6.00%) high severe
Benchmarking list/iterate/pielist/1000
Benchmarking list/iterate/pielist/1000: Warming up for 3.0000 s
Benchmarking list/iterate/pielist/1000: Collecting 100 samples in estimated 5.0059 s (2.9M iterations)
Benchmarking list/iterate/pielist/1000: Analyzing
list/iterate/pielist/1000
                        time:   [1.6995 µs 1.7025 µs 1.7059 µs]
                        change: [+0.3711% +0.6910% +0.9925%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking list/iterate/vec/1000
Benchmarking list/iterate/vec/1000: Warming up for 3.0000 s
Benchmarking list/iterate/vec/1000: Collecting 100 samples in estimated 5.0002 s (68M iterations)
Benchmarking list/iterate/vec/1000: Analyzing
list/iterate/vec/1000   time:   [72.138 ns 73.386 ns 74.698 ns]
                        change: [−7.1852% −5.3813% −3.2565%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking list/iterate/vecdeque/1000
Benchmarking list/iterate/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/iterate/vecdeque/1000: Collecting 100 samples in estimated 5.0000 s (79M iterations)
Benchmarking list/iterate/vecdeque/1000: Analyzing
list/iterate/vecdeque/1000
                        time:   [62.825 ns 63.089 ns 63.465 ns]
                        change: [+0.7038% +1.4553% +2.2953%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe
Benchmarking list/iterate/indexlist/1000
Benchmarking list/iterate/indexlist/1000: Warming up for 3.0000 s
Benchmarking list/iterate/indexlist/1000: Collecting 100 samples in estimated 5.0033 s (4.8M iterations)
Benchmarking list/iterate/indexlist/1000: Analyzing
list/iterate/indexlist/1000
                        time:   [1.0322 µs 1.0334 µs 1.0350 µs]
                        change: [−0.1592% +0.1242% +0.4054%] (p = 0.38 > 0.05)
                        No change in performance detected.
Found 20 outliers among 100 measurements (20.00%)
  2 (2.00%) low mild
  4 (4.00%) high mild
  14 (14.00%) high severe
Benchmarking list/iterate/pielist/10000
Benchmarking list/iterate/pielist/10000: Warming up for 3.0000 s
Benchmarking list/iterate/pielist/10000: Collecting 100 samples in estimated 5.0558 s (293k iterations)
Benchmarking list/iterate/pielist/10000: Analyzing
list/iterate/pielist/10000
                        time:   [17.145 µs 17.167 µs 17.191 µs]
                        change: [+0.0372% +0.3778% +0.7076%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) high mild
  1 (1.00%) high severe
Benchmarking list/iterate/vec/10000
Benchmarking list/iterate/vec/10000: Warming up for 3.0000 s
Benchmarking list/iterate/vec/10000: Collecting 100 samples in estimated 5.0010 s (6.4M iterations)
Benchmarking list/iterate/vec/10000: Analyzing
list/iterate/vec/10000  time:   [772.52 ns 782.89 ns 794.56 ns]
                        change: [−5.6321% −3.9667% −2.1532%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild
Benchmarking list/iterate/vecdeque/10000
Benchmarking list/iterate/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/iterate/vecdeque/10000: Collecting 100 samples in estimated 5.0031 s (7.2M iterations)
Benchmarking list/iterate/vecdeque/10000: Analyzing
list/iterate/vecdeque/10000
                        time:   [697.88 ns 698.99 ns 700.22 ns]
                        change: [−0.5992% −0.3262% −0.0601%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  2 (2.00%) high mild
  14 (14.00%) high severe
Benchmarking list/iterate/indexlist/10000
Benchmarking list/iterate/indexlist/10000: Warming up for 3.0000 s
Benchmarking list/iterate/indexlist/10000: Collecting 100 samples in estimated 5.0232 s (480k iterations)
Benchmarking list/iterate/indexlist/10000: Analyzing
list/iterate/indexlist/10000
                        time:   [10.410 µs 10.422 µs 10.438 µs]
                        change: [−0.5683% −0.2428% +0.0918%] (p = 0.14 > 0.05)
                        No change in performance detected.
Found 17 outliers among 100 measurements (17.00%)
  1 (1.00%) low mild
  15 (15.00%) high mild
  1 (1.00%) high severe

Benchmarking list/mid_modify/pielist/100
Benchmarking list/mid_modify/pielist/100: Warming up for 3.0000 s
Benchmarking list/mid_modify/pielist/100: Collecting 100 samples in estimated 5.0047 s (3.8M iterations)
Benchmarking list/mid_modify/pielist/100: Analyzing
list/mid_modify/pielist/100
                        time:   [144.85 ns 148.08 ns 150.96 ns]
                        change: [+0.1475% +2.5905% +5.1157%] (p = 0.05 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking list/mid_modify/vec/100
Benchmarking list/mid_modify/vec/100: Warming up for 3.0000 s
Benchmarking list/mid_modify/vec/100: Collecting 100 samples in estimated 5.0007 s (18M iterations)
Benchmarking list/mid_modify/vec/100: Analyzing
list/mid_modify/vec/100 time:   [78.215 ns 80.927 ns 83.299 ns]
                        change: [−6.0612% −2.3818% +1.3883%] (p = 0.22 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking list/mid_modify/vecdeque/100
Benchmarking list/mid_modify/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/mid_modify/vecdeque/100: Collecting 100 samples in estimated 5.0000 s (18M iterations)
Benchmarking list/mid_modify/vecdeque/100: Analyzing
list/mid_modify/vecdeque/100
                        time:   [82.121 ns 84.190 ns 85.952 ns]
                        change: [−5.3477% −2.2361% +1.1821%] (p = 0.19 > 0.05)
                        No change in performance detected.
Benchmarking list/mid_modify/indexlist/100
Benchmarking list/mid_modify/indexlist/100: Warming up for 3.0000 s
Benchmarking list/mid_modify/indexlist/100: Collecting 100 samples in estimated 5.0036 s (3.8M iterations)
Benchmarking list/mid_modify/indexlist/100: Analyzing
list/mid_modify/indexlist/100
                        time:   [103.22 ns 105.89 ns 108.34 ns]
                        change: [−3.8275% −1.1358% +1.5134%] (p = 0.41 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild
Benchmarking list/mid_modify/pielist/1000
Benchmarking list/mid_modify/pielist/1000: Warming up for 3.0000 s
Benchmarking list/mid_modify/pielist/1000: Collecting 100 samples in estimated 5.0426 s (550k iterations)
Benchmarking list/mid_modify/pielist/1000: Analyzing
list/mid_modify/pielist/1000
                        time:   [876.35 ns 893.89 ns 909.11 ns]
                        change: [−3.3842% −1.0185% +1.2409%] (p = 0.40 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking list/mid_modify/vec/1000
Benchmarking list/mid_modify/vec/1000: Warming up for 3.0000 s
Benchmarking list/mid_modify/vec/1000: Collecting 100 samples in estimated 5.0097 s (2.3M iterations)
Benchmarking list/mid_modify/vec/1000: Analyzing
list/mid_modify/vec/1000
                        time:   [294.64 ns 304.42 ns 312.30 ns]
                        change: [−3.6206% +1.7638% +7.9678%] (p = 0.55 > 0.05)
                        No change in performance detected.
Benchmarking list/mid_modify/vecdeque/1000
Benchmarking list/mid_modify/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/mid_modify/vecdeque/1000: Collecting 100 samples in estimated 5.0015 s (2.3M iterations)
Benchmarking list/mid_modify/vecdeque/1000: Analyzing
list/mid_modify/vecdeque/1000
                        time:   [295.91 ns 305.33 ns 312.92 ns]
                        change: [−12.257% −7.5177% −2.4407%] (p = 0.01 < 0.05)
                        Performance has improved.
Benchmarking list/mid_modify/indexlist/1000
Benchmarking list/mid_modify/indexlist/1000: Warming up for 3.0000 s
Benchmarking list/mid_modify/indexlist/1000: Collecting 100 samples in estimated 5.0043 s (545k iterations)
Benchmarking list/mid_modify/indexlist/1000: Analyzing
list/mid_modify/indexlist/1000
                        time:   [623.80 ns 631.57 ns 638.24 ns]
                        change: [−0.7922% +0.5960% +2.0178%] (p = 0.42 > 0.05)
                        No change in performance detected.
Benchmarking list/mid_modify/pielist/10000
Benchmarking list/mid_modify/pielist/10000: Warming up for 3.0000 s
Benchmarking list/mid_modify/pielist/10000: Collecting 100 samples in estimated 5.3218 s (61k iterations)
Benchmarking list/mid_modify/pielist/10000: Analyzing
list/mid_modify/pielist/10000
                        time:   [8.2090 µs 8.4123 µs 8.6216 µs]
                        change: [−2.5841% −0.3656% +1.8711%] (p = 0.76 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
Benchmarking list/mid_modify/vec/10000
Benchmarking list/mid_modify/vec/10000: Warming up for 3.0000 s
Benchmarking list/mid_modify/vec/10000: Collecting 100 samples in estimated 5.0765 s (232k iterations)
Benchmarking list/mid_modify/vec/10000: Analyzing
list/mid_modify/vec/10000
                        time:   [2.7988 µs 2.8947 µs 2.9758 µs]
                        change: [−6.8964% −2.5252% +1.6988%] (p = 0.26 > 0.05)
                        No change in performance detected.
Benchmarking list/mid_modify/vecdeque/10000
Benchmarking list/mid_modify/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/mid_modify/vecdeque/10000: Collecting 100 samples in estimated 5.0819 s (232k iterations)
Benchmarking list/mid_modify/vecdeque/10000: Analyzing
list/mid_modify/vecdeque/10000
                        time:   [2.7773 µs 2.8773 µs 2.9622 µs]
                        change: [−6.2155% −1.9208% +2.5485%] (p = 0.40 > 0.05)
                        No change in performance detected.
Benchmarking list/mid_modify/indexlist/10000
Benchmarking list/mid_modify/indexlist/10000: Warming up for 3.0000 s
Benchmarking list/mid_modify/indexlist/10000: Collecting 100 samples in estimated 5.1035 s (56k iterations)
Benchmarking list/mid_modify/indexlist/10000: Analyzing
list/mid_modify/indexlist/10000
                        time:   [5.6592 µs 5.7495 µs 5.8310 µs]
                        change: [−1.9117% −0.5579% +0.7847%] (p = 0.44 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  7 (7.00%) high mild
  1 (1.00%) high severe

Benchmarking list/multi_insert/pielist/1000
Benchmarking list/multi_insert/pielist/1000: Warming up for 3.0000 s
Benchmarking list/multi_insert/pielist/1000: Collecting 100 samples in estimated 5.0137 s (470k iterations)
Benchmarking list/multi_insert/pielist/1000: Analyzing
list/multi_insert/pielist/1000
                        time:   [3.1377 µs 3.1464 µs 3.1552 µs]
                        change: [−0.8143% −0.3899% +0.0266%] (p = 0.07 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
Benchmarking list/multi_insert/vec/1000
Benchmarking list/multi_insert/vec/1000: Warming up for 3.0000 s
Benchmarking list/multi_insert/vec/1000: Collecting 100 samples in estimated 5.0179 s (747k iterations)
Benchmarking list/multi_insert/vec/1000: Analyzing
list/multi_insert/vec/1000
                        time:   [5.0229 µs 5.0345 µs 5.0473 µs]
                        change: [−0.5374% −0.1345% +0.2318%] (p = 0.51 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe
Benchmarking list/multi_insert/pielist/10000
Benchmarking list/multi_insert/pielist/10000: Warming up for 3.0000 s
Benchmarking list/multi_insert/pielist/10000: Collecting 100 samples in estimated 5.0334 s (71k iterations)
Benchmarking list/multi_insert/pielist/10000: Analyzing
list/multi_insert/pielist/10000
                        time:   [3.2083 µs 3.2163 µs 3.2248 µs]
                        change: [+0.5820% +1.3600% +2.1975%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  8 (8.00%) high mild
  2 (2.00%) high severe
Benchmarking list/multi_insert/vec/10000
Benchmarking list/multi_insert/vec/10000: Warming up for 3.0000 s
Benchmarking list/multi_insert/vec/10000: Collecting 100 samples in estimated 5.2307 s (45k iterations)
Benchmarking list/multi_insert/vec/10000: Analyzing
list/multi_insert/vec/10000
                        time:   [99.719 µs 99.953 µs 100.29 µs]
                        change: [−1.0799% −0.5921% −0.1224%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 18 outliers among 100 measurements (18.00%)
  1 (1.00%) low mild
  10 (10.00%) high mild
  7 (7.00%) high severe
Benchmarking list/multi_insert/pielist/100000
Benchmarking list/multi_insert/pielist/100000: Warming up for 3.0000 s
Benchmarking list/multi_insert/pielist/100000: Collecting 100 samples in estimated 6.5020 s (10k iterations)
Benchmarking list/multi_insert/pielist/100000: Analyzing
list/multi_insert/pielist/100000
                        time:   [3.2491 µs 3.2631 µs 3.2791 µs]
                        change: [+1.5660% +2.5090% +3.4229%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 8 outliers among 100 measurements (8.00%)
  6 (6.00%) high mild
  2 (2.00%) high severe
Benchmarking list/multi_insert/vec/100000
Benchmarking list/multi_insert/vec/100000: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.2s, enable flat sampling, or reduce sample count to 60.

Benchmarking list/multi_insert/vec/100000: Collecting 100 samples in estimated 6.2087 s (5050 iterations)
Benchmarking list/multi_insert/vec/100000: Analyzing
list/multi_insert/vec/100000
                        time:   [1.3797 ms 1.3891 ms 1.3976 ms]
                        change: [+11.718% +13.633% +15.618%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking list/splice/pielist/1000+500
Benchmarking list/splice/pielist/1000+500: Warming up for 3.0000 s
Benchmarking list/splice/pielist/1000+500: Collecting 100 samples in estimated 5.0485 s (338k iterations)
Benchmarking list/splice/pielist/1000+500: Analyzing
list/splice/pielist/1000+500
                        time:   [812.46 ns 830.78 ns 848.09 ns]
                        change: [−0.0249% +1.9256% +3.9783%] (p = 0.06 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking list/splice/vec/1000+500
Benchmarking list/splice/vec/1000+500: Warming up for 3.0000 s
Benchmarking list/splice/vec/1000+500: Collecting 100 samples in estimated 5.0063 s (1.5M iterations)
Benchmarking list/splice/vec/1000+500: Analyzing
list/splice/vec/1000+500
                        time:   [663.43 ns 678.21 ns 690.57 ns]
                        change: [−7.5251% −4.3415% −1.0474%] (p = 0.01 < 0.05)
                        Performance has improved.
Benchmarking list/splice/pielist/10000+5000
Benchmarking list/splice/pielist/10000+5000: Warming up for 3.0000 s
Benchmarking list/splice/pielist/10000+5000: Collecting 100 samples in estimated 5.2515 s (35k iterations)
Benchmarking list/splice/pielist/10000+5000: Analyzing
list/splice/pielist/10000+5000
                        time:   [7.8920 µs 8.0373 µs 8.1861 µs]
                        change: [−1.1457% +0.4111% +2.0344%] (p = 0.61 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
Benchmarking list/splice/vec/10000+5000
Benchmarking list/splice/vec/10000+5000: Warming up for 3.0000 s
Benchmarking list/splice/vec/10000+5000: Collecting 100 samples in estimated 5.1137 s (146k iterations)
Benchmarking list/splice/vec/10000+5000: Analyzing
list/splice/vec/10000+5000
                        time:   [7.4436 µs 7.5815 µs 7.6966 µs]
                        change: [−3.1814% −1.2185% +1.0003%] (p = 0.24 > 0.05)
                        No change in performance detected.
Benchmarking list/splice/pielist/100000+50000
Benchmarking list/splice/pielist/100000+50000: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.4s, enable flat sampling, or reduce sample count to 60.

Benchmarking list/splice/pielist/100000+50000: Collecting 100 samples in estimated 6.3711 s (5050 iterations)
Benchmarking list/splice/pielist/100000+50000: Analyzing
list/splice/pielist/100000+50000
                        time:   [85.672 µs 87.937 µs 89.888 µs]
                        change: [−5.1825% −2.4030% +0.4708%] (p = 0.11 > 0.05)
                        No change in performance detected.
Benchmarking list/splice/vec/100000+50000
Benchmarking list/splice/vec/100000+50000: Warming up for 3.0000 s
Benchmarking list/splice/vec/100000+50000: Collecting 100 samples in estimated 5.5080 s (15k iterations)
Benchmarking list/splice/vec/100000+50000: Analyzing
list/splice/vec/100000+50000
                        time:   [85.733 µs 87.356 µs 88.905 µs]
                        change: [+1.0782% +2.9305% +4.8276%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

Benchmarking list/splice_front/pielist/10000+5000
Benchmarking list/splice_front/pielist/10000+5000: Warming up for 3.0000 s
Benchmarking list/splice_front/pielist/10000+5000: Collecting 100 samples in estimated 5.6163 s (40k iterations)
Benchmarking list/splice_front/pielist/10000+5000: Analyzing
list/splice_front/pielist/10000+5000
                        time:   [38.248 ns 39.411 ns 40.444 ns]
                        change: [−9.2745% −5.5306% −1.3131%] (p = 0.01 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking list/splice_front/vec/10000+5000
Benchmarking list/splice_front/vec/10000+5000: Warming up for 3.0000 s
Benchmarking list/splice_front/vec/10000+5000: Collecting 100 samples in estimated 5.0141 s (136k iterations)
Benchmarking list/splice_front/vec/10000+5000: Analyzing
list/splice_front/vec/10000+5000
                        time:   [9.4154 µs 9.5042 µs 9.5799 µs]
                        change: [+19.336% +21.744% +24.105%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking list/splice_front/pielist/100000+50000
Benchmarking list/splice_front/pielist/100000+50000: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.0s, enable flat sampling, or reduce sample count to 60.

Benchmarking list/splice_front/pielist/100000+50000: Collecting 100 samples in estimated 5.9603 s (5050 iterations)
Benchmarking list/splice_front/pielist/100000+50000: Analyzing
list/splice_front/pielist/100000+50000
                        time:   [62.421 ns 64.402 ns 66.627 ns]
                        change: [−33.618% −15.247% +4.7771%] (p = 0.23 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) high mild
  3 (3.00%) high severe
Benchmarking list/splice_front/vec/100000+50000
Benchmarking list/splice_front/vec/100000+50000: Warming up for 3.0000 s
Benchmarking list/splice_front/vec/100000+50000: Collecting 100 samples in estimated 5.6618 s (15k iterations)
Benchmarking list/splice_front/vec/100000+50000: Analyzing
list/splice_front/vec/100000+50000
                        time:   [97.126 µs 98.431 µs 99.526 µs]
                        change: [−1.8405% −0.3012% +1.4791%] (p = 0.73 > 0.05)
                        No change in performance detected.

Benchmarking list/sort/pielist/100
Benchmarking list/sort/pielist/100: Warming up for 3.0000 s
Benchmarking list/sort/pielist/100: Collecting 100 samples in estimated 5.0055 s (1.4M iterations)
Benchmarking list/sort/pielist/100: Analyzing
list/sort/pielist/100   time:   [2.7979 µs 2.8030 µs 2.8087 µs]
                        change: [−0.6601% −0.1886% +0.2594%] (p = 0.44 > 0.05)
                        No change in performance detected.
Found 23 outliers among 100 measurements (23.00%)
  16 (16.00%) low severe
  1 (1.00%) low mild
  1 (1.00%) high mild
  5 (5.00%) high severe
Benchmarking list/sort/vec/100
Benchmarking list/sort/vec/100: Warming up for 3.0000 s
Benchmarking list/sort/vec/100: Collecting 100 samples in estimated 5.0008 s (9.6M iterations)
Benchmarking list/sort/vec/100: Analyzing
list/sort/vec/100       time:   [351.64 ns 352.13 ns 352.64 ns]
                        change: [−1.4727% −1.1380% −0.8346%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 13 outliers among 100 measurements (13.00%)
  3 (3.00%) low mild
  10 (10.00%) high mild
Benchmarking list/sort/pielist/1000
Benchmarking list/sort/pielist/1000: Warming up for 3.0000 s
Benchmarking list/sort/pielist/1000: Collecting 100 samples in estimated 5.2375 s (96k iterations)
Benchmarking list/sort/pielist/1000: Analyzing
list/sort/pielist/1000  time:   [48.813 µs 48.867 µs 48.919 µs]
                        change: [−4.9373% −4.6813% −4.4469%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 10 outliers among 100 measurements (10.00%)
  6 (6.00%) low mild
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking list/sort/vec/1000
Benchmarking list/sort/vec/1000: Warming up for 3.0000 s
Benchmarking list/sort/vec/1000: Collecting 100 samples in estimated 5.0012 s (722k iterations)
Benchmarking list/sort/vec/1000: Analyzing
list/sort/vec/1000      time:   [4.9852 µs 4.9946 µs 5.0048 µs]
                        change: [−0.8293% −0.5690% −0.3167%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 13 outliers among 100 measurements (13.00%)
  4 (4.00%) low mild
  4 (4.00%) high mild
  5 (5.00%) high severe
Benchmarking list/sort/pielist/10000
Benchmarking list/sort/pielist/10000: Warming up for 3.0000 s
Benchmarking list/sort/pielist/10000: Collecting 100 samples in estimated 9.8209 s (10k iterations)
Benchmarking list/sort/pielist/10000: Analyzing
list/sort/pielist/10000 time:   [912.66 µs 913.36 µs 914.15 µs]
                        change: [−0.1443% +0.0515% +0.2418%] (p = 0.61 > 0.05)
                        No change in performance detected.
Found 17 outliers among 100 measurements (17.00%)
  1 (1.00%) low severe
  5 (5.00%) low mild
  6 (6.00%) high mild
  5 (5.00%) high severe
Benchmarking list/sort/vec/10000
Benchmarking list/sort/vec/10000: Warming up for 3.0000 s
Benchmarking list/sort/vec/10000: Collecting 100 samples in estimated 5.4776 s (50k iterations)
Benchmarking list/sort/vec/10000: Analyzing
list/sort/vec/10000     time:   [89.464 µs 89.655 µs 89.873 µs]
                        change: [+2.3436% +2.6234% +2.8922%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking list/random_access/vec/100
Benchmarking list/random_access/vec/100: Warming up for 3.0000 s
Benchmarking list/random_access/vec/100: Collecting 100 samples in estimated 5.0001 s (184M iterations)
Benchmarking list/random_access/vec/100: Analyzing
list/random_access/vec/100
                        time:   [27.330 ns 27.372 ns 27.420 ns]
                        change: [+0.4218% +0.6999% +1.0059%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  12 (12.00%) high mild
  4 (4.00%) high severe
Benchmarking list/random_access/vecdeque/100
Benchmarking list/random_access/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/random_access/vecdeque/100: Collecting 100 samples in estimated 5.0002 s (110M iterations)
Benchmarking list/random_access/vecdeque/100: Analyzing
list/random_access/vecdeque/100
                        time:   [45.254 ns 45.366 ns 45.467 ns]
                        change: [+6.3758% +6.9452% +7.4968%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking list/random_access/pielist/100
Benchmarking list/random_access/pielist/100: Warming up for 3.0000 s
Benchmarking list/random_access/pielist/100: Collecting 100 samples in estimated 5.0213 s (778k iterations)
Benchmarking list/random_access/pielist/100: Analyzing
list/random_access/pielist/100
                        time:   [6.4236 µs 6.4314 µs 6.4389 µs]
                        change: [−0.5883% −0.0156% +0.4422%] (p = 0.95 > 0.05)
                        No change in performance detected.
Found 14 outliers among 100 measurements (14.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  7 (7.00%) high mild
  5 (5.00%) high severe
Benchmarking list/random_access/indexlist/100
Benchmarking list/random_access/indexlist/100: Warming up for 3.0000 s
Benchmarking list/random_access/indexlist/100: Collecting 100 samples in estimated 5.0247 s (970k iterations)
Benchmarking list/random_access/indexlist/100: Analyzing
list/random_access/indexlist/100
                        time:   [5.1901 µs 5.1997 µs 5.2100 µs]
                        change: [+0.7508% +1.1059% +1.4860%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 8 outliers among 100 measurements (8.00%)
  8 (8.00%) high mild
Benchmarking list/random_access/vec/1000
Benchmarking list/random_access/vec/1000: Warming up for 3.0000 s
Benchmarking list/random_access/vec/1000: Collecting 100 samples in estimated 5.0000 s (184M iterations)
Benchmarking list/random_access/vec/1000: Analyzing
list/random_access/vec/1000
                        time:   [27.040 ns 27.050 ns 27.061 ns]
                        change: [−0.4260% −0.1539% +0.1077%] (p = 0.26 > 0.05)
                        No change in performance detected.
Found 14 outliers among 100 measurements (14.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  5 (5.00%) high mild
  7 (7.00%) high severe
Benchmarking list/random_access/vecdeque/1000
Benchmarking list/random_access/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/random_access/vecdeque/1000: Collecting 100 samples in estimated 5.0000 s (110M iterations)
Benchmarking list/random_access/vecdeque/1000: Analyzing
list/random_access/vecdeque/1000
                        time:   [44.543 ns 44.794 ns 45.042 ns]
                        change: [+5.2754% +5.8960% +6.4434%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking list/random_access/pielist/1000
Benchmarking list/random_access/pielist/1000: Warming up for 3.0000 s
Benchmarking list/random_access/pielist/1000: Collecting 100 samples in estimated 5.0303 s (76k iterations)
Benchmarking list/random_access/pielist/1000: Analyzing
list/random_access/pielist/1000
                        time:   [66.227 µs 66.260 µs 66.295 µs]
                        change: [−0.5711% −0.3300% −0.0900%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  5 (5.00%) high mild
  9 (9.00%) high severe
Benchmarking list/random_access/indexlist/1000
Benchmarking list/random_access/indexlist/1000: Warming up for 3.0000 s
Benchmarking list/random_access/indexlist/1000: Collecting 100 samples in estimated 5.1249 s (106k iterations)
Benchmarking list/random_access/indexlist/1000: Analyzing
list/random_access/indexlist/1000
                        time:   [48.234 µs 48.366 µs 48.550 µs]
                        change: [−0.4259% +0.0021% +0.3899%] (p = 0.99 > 0.05)
                        No change in performance detected.
Found 17 outliers among 100 measurements (17.00%)
  4 (4.00%) high mild
  13 (13.00%) high severe
Benchmarking list/random_access/vec/10000
Benchmarking list/random_access/vec/10000: Warming up for 3.0000 s
Benchmarking list/random_access/vec/10000: Collecting 100 samples in estimated 5.0000 s (184M iterations)
Benchmarking list/random_access/vec/10000: Analyzing
list/random_access/vec/10000
                        time:   [27.102 ns 27.151 ns 27.207 ns]
                        change: [−0.0116% +0.2377% +0.4914%] (p = 0.07 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  7 (7.00%) high mild
  1 (1.00%) high severe
Benchmarking list/random_access/vecdeque/10000
Benchmarking list/random_access/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/random_access/vecdeque/10000: Collecting 100 samples in estimated 5.0002 s (110M iterations)
Benchmarking list/random_access/vecdeque/10000: Analyzing
list/random_access/vecdeque/10000
                        time:   [45.088 ns 45.259 ns 45.429 ns]
                        change: [+1.4087% +1.9892% +2.5378%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking list/drain/pielist/100
Benchmarking list/drain/pielist/100: Warming up for 3.0000 s
Benchmarking list/drain/pielist/100: Collecting 100 samples in estimated 5.0056 s (3.6M iterations)
Benchmarking list/drain/pielist/100: Analyzing
list/drain/pielist/100  time:   [293.81 ns 294.51 ns 295.20 ns]
                        change: [−0.9326% +0.8365% +2.7446%] (p = 0.39 > 0.05)
                        No change in performance detected.
Found 12 outliers among 100 measurements (12.00%)
  11 (11.00%) low severe
  1 (1.00%) high severe
Benchmarking list/drain/vec/100
Benchmarking list/drain/vec/100: Warming up for 3.0000 s
Benchmarking list/drain/vec/100: Collecting 100 samples in estimated 5.0007 s (21M iterations)
Benchmarking list/drain/vec/100: Analyzing
list/drain/vec/100      time:   [35.657 ns 37.418 ns 38.880 ns]
                        change: [−12.009% −4.6061% +3.6222%] (p = 0.26 > 0.05)
                        No change in performance detected.
Benchmarking list/drain/vecdeque/100
Benchmarking list/drain/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/drain/vecdeque/100: Collecting 100 samples in estimated 5.0008 s (19M iterations)
Benchmarking list/drain/vecdeque/100: Analyzing
list/drain/vecdeque/100 time:   [64.626 ns 65.925 ns 67.011 ns]
                        change: [−2.9555% −0.4270% +2.1618%] (p = 0.75 > 0.05)
                        No change in performance detected.
Benchmarking list/drain/pielist/1000
Benchmarking list/drain/pielist/1000: Warming up for 3.0000 s
Benchmarking list/drain/pielist/1000: Collecting 100 samples in estimated 5.0514 s (490k iterations)
Benchmarking list/drain/pielist/1000: Analyzing
list/drain/pielist/1000 time:   [2.5716 µs 2.5794 µs 2.5863 µs]
                        change: [−0.5854% +0.8145% +2.3537%] (p = 0.29 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  6 (6.00%) low severe
  1 (1.00%) low mild
  1 (1.00%) high mild
Benchmarking list/drain/vec/1000
Benchmarking list/drain/vec/1000: Warming up for 3.0000 s
Benchmarking list/drain/vec/1000: Collecting 100 samples in estimated 5.0007 s (2.4M iterations)
Benchmarking list/drain/vec/1000: Analyzing
list/drain/vec/1000     time:   [282.34 ns 294.90 ns 304.93 ns]
                        change: [−4.7770% +5.8338% +17.127%] (p = 0.29 > 0.05)
                        No change in performance detected.
Benchmarking list/drain/vecdeque/1000
Benchmarking list/drain/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/drain/vecdeque/1000: Collecting 100 samples in estimated 5.0036 s (2.1M iterations)
Benchmarking list/drain/vecdeque/1000: Analyzing
list/drain/vecdeque/1000
                        time:   [541.45 ns 568.21 ns 590.09 ns]
                        change: [−18.604% −12.730% −6.0005%] (p = 0.00 < 0.05)
                        Performance has improved.
Benchmarking list/drain/pielist/10000
Benchmarking list/drain/pielist/10000: Warming up for 3.0000 s
Benchmarking list/drain/pielist/10000: Collecting 100 samples in estimated 5.0721 s (50k iterations)
Benchmarking list/drain/pielist/10000: Analyzing
list/drain/pielist/10000
                        time:   [25.213 µs 25.279 µs 25.345 µs]
                        change: [−1.3118% +0.0711% +1.5104%] (p = 0.92 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) low severe
Benchmarking list/drain/vec/10000
Benchmarking list/drain/vec/10000: Warming up for 3.0000 s
Benchmarking list/drain/vec/10000: Collecting 100 samples in estimated 5.0064 s (232k iterations)
Benchmarking list/drain/vec/10000: Analyzing
list/drain/vec/10000    time:   [2.5891 µs 2.7408 µs 2.8640 µs]
                        change: [−15.957% −6.4660% +3.8513%] (p = 0.23 > 0.05)
                        No change in performance detected.
Benchmarking list/drain/vecdeque/10000
Benchmarking list/drain/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/drain/vecdeque/10000: Collecting 100 samples in estimated 5.1101 s (222k iterations)
Benchmarking list/drain/vecdeque/10000: Analyzing
list/drain/vecdeque/10000
                        time:   [5.7962 µs 6.0584 µs 6.2716 µs]
                        change: [−3.7626% +4.7187% +14.149%] (p = 0.29 > 0.05)
                        No change in performance detected.

Benchmarking list/cursor_traverse/pielist_cursor/100
Benchmarking list/cursor_traverse/pielist_cursor/100: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_cursor/100: Collecting 100 samples in estimated 5.0004 s (21M iterations)
Benchmarking list/cursor_traverse/pielist_cursor/100: Analyzing
list/cursor_traverse/pielist_cursor/100
                        time:   [238.09 ns 238.69 ns 239.32 ns]
                        change: [−0.4939% −0.2051% +0.0797%] (p = 0.18 > 0.05)
                        No change in performance detected.
Found 16 outliers among 100 measurements (16.00%)
  5 (5.00%) high mild
  11 (11.00%) high severe
Benchmarking list/cursor_traverse/pielist_cursor_mut/100
Benchmarking list/cursor_traverse/pielist_cursor_mut/100: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_cursor_mut/100: Collecting 100 samples in estimated 5.0006 s (22M iterations)
Benchmarking list/cursor_traverse/pielist_cursor_mut/100: Analyzing
list/cursor_traverse/pielist_cursor_mut/100
                        time:   [230.83 ns 231.42 ns 232.02 ns]
                        change: [−1.0220% −0.6290% −0.2422%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 20 outliers among 100 measurements (20.00%)
  1 (1.00%) low severe
  4 (4.00%) low mild
  5 (5.00%) high mild
  10 (10.00%) high severe
Benchmarking list/cursor_traverse/pielist_iter/100
Benchmarking list/cursor_traverse/pielist_iter/100: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_iter/100: Collecting 100 samples in estimated 5.0004 s (33M iterations)
Benchmarking list/cursor_traverse/pielist_iter/100: Analyzing
list/cursor_traverse/pielist_iter/100
                        time:   [150.49 ns 150.78 ns 151.09 ns]
                        change: [−0.6876% −0.3363% −0.0008%] (p = 0.06 > 0.05)
                        No change in performance detected.
Found 18 outliers among 100 measurements (18.00%)
  17 (17.00%) high mild
  1 (1.00%) high severe
Benchmarking list/cursor_traverse/pielist_cursor/1000
Benchmarking list/cursor_traverse/pielist_cursor/1000: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_cursor/1000: Collecting 100 samples in estimated 5.0004 s (2.2M iterations)
Benchmarking list/cursor_traverse/pielist_cursor/1000: Analyzing
list/cursor_traverse/pielist_cursor/1000
                        time:   [2.2997 µs 2.3031 µs 2.3066 µs]
                        change: [−0.6712% −0.3980% −0.1433%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  2 (2.00%) low mild
  7 (7.00%) high mild
  7 (7.00%) high severe
Benchmarking list/cursor_traverse/pielist_cursor_mut/1000
Benchmarking list/cursor_traverse/pielist_cursor_mut/1000: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_cursor_mut/1000: Collecting 100 samples in estimated 5.0102 s (2.2M iterations)
Benchmarking list/cursor_traverse/pielist_cursor_mut/1000: Analyzing
list/cursor_traverse/pielist_cursor_mut/1000
                        time:   [2.2281 µs 2.2302 µs 2.2328 µs]
                        change: [−0.9170% −0.5508% −0.1997%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) high mild
  5 (5.00%) high severe
Benchmarking list/cursor_traverse/pielist_iter/1000
Benchmarking list/cursor_traverse/pielist_iter/1000: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_iter/1000: Collecting 100 samples in estimated 5.0024 s (2.9M iterations)
Benchmarking list/cursor_traverse/pielist_iter/1000: Analyzing
list/cursor_traverse/pielist_iter/1000
                        time:   [1.7007 µs 1.7039 µs 1.7075 µs]
                        change: [+0.4805% +0.7947% +1.1136%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking list/cursor_traverse/pielist_cursor/10000
Benchmarking list/cursor_traverse/pielist_cursor/10000: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_cursor/10000: Collecting 100 samples in estimated 5.0886 s (222k iterations)
Benchmarking list/cursor_traverse/pielist_cursor/10000: Analyzing
list/cursor_traverse/pielist_cursor/10000
                        time:   [22.857 µs 22.884 µs 22.908 µs]
                        change: [−0.3433% −0.0921% +0.1362%] (p = 0.47 > 0.05)
                        No change in performance detected.
Found 14 outliers among 100 measurements (14.00%)
  4 (4.00%) low severe
  4 (4.00%) high mild
  6 (6.00%) high severe
Benchmarking list/cursor_traverse/pielist_cursor_mut/10000
Benchmarking list/cursor_traverse/pielist_cursor_mut/10000: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_cursor_mut/10000: Collecting 100 samples in estimated 5.0956 s (222k iterations)
Benchmarking list/cursor_traverse/pielist_cursor_mut/10000: Analyzing
list/cursor_traverse/pielist_cursor_mut/10000
                        time:   [22.615 µs 22.649 µs 22.677 µs]
                        change: [+0.6812% +1.0234% +1.3364%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 13 outliers among 100 measurements (13.00%)
  1 (1.00%) low severe
  4 (4.00%) low mild
  3 (3.00%) high mild
  5 (5.00%) high severe
Benchmarking list/cursor_traverse/pielist_iter/10000
Benchmarking list/cursor_traverse/pielist_iter/10000: Warming up for 3.0000 s
Benchmarking list/cursor_traverse/pielist_iter/10000: Collecting 100 samples in estimated 5.0296 s (293k iterations)
Benchmarking list/cursor_traverse/pielist_iter/10000: Analyzing
list/cursor_traverse/pielist_iter/10000
                        time:   [17.138 µs 17.183 µs 17.241 µs]
                        change: [−0.4965% −0.1939% +0.1191%] (p = 0.23 > 0.05)
                        No change in performance detected.
Found 14 outliers among 100 measurements (14.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild
  10 (10.00%) high severe

Benchmarking list/split/pielist/100
Benchmarking list/split/pielist/100: Warming up for 3.0000 s
Benchmarking list/split/pielist/100: Collecting 100 samples in estimated 5.0035 s (4.4M iterations)
Benchmarking list/split/pielist/100: Analyzing
list/split/pielist/100  time:   [309.15 ns 312.51 ns 315.62 ns]
                        change: [+122.92% +128.26% +133.51%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 14 outliers among 100 measurements (14.00%)
  5 (5.00%) low severe
  1 (1.00%) low mild
  7 (7.00%) high mild
  1 (1.00%) high severe
Benchmarking list/split/vec/100
Benchmarking list/split/vec/100: Warming up for 3.0000 s
Benchmarking list/split/vec/100: Collecting 100 samples in estimated 5.0008 s (25M iterations)
Benchmarking list/split/vec/100: Analyzing
list/split/vec/100      time:   [15.438 ns 15.483 ns 15.525 ns]
                        change: [−0.0007% +0.6014% +1.2135%] (p = 0.05 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe
Benchmarking list/split/pielist/1000
Benchmarking list/split/pielist/1000: Warming up for 3.0000 s
Benchmarking list/split/pielist/1000: Collecting 100 samples in estimated 5.0254 s (530k iterations)
Benchmarking list/split/pielist/1000: Analyzing
list/split/pielist/1000 time:   [2.3888 µs 2.4110 µs 2.4300 µs]
                        change: [+166.46% +172.93% +179.26%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild
Benchmarking list/split/vec/1000
Benchmarking list/split/vec/1000: Warming up for 3.0000 s
Benchmarking list/split/vec/1000: Collecting 100 samples in estimated 5.0018 s (2.8M iterations)
Benchmarking list/split/vec/1000: Analyzing
list/split/vec/1000     time:   [19.281 ns 19.864 ns 20.384 ns]
                        change: [−7.4085% −3.3021% +0.9434%] (p = 0.14 > 0.05)
                        No change in performance detected.
Benchmarking list/split/pielist/10000
Benchmarking list/split/pielist/10000: Warming up for 3.0000 s
Benchmarking list/split/pielist/10000: Collecting 100 samples in estimated 5.0490 s (56k iterations)
Benchmarking list/split/pielist/10000: Analyzing
list/split/pielist/10000
                        time:   [23.170 µs 23.339 µs 23.480 µs]
                        change: [+180.26% +185.83% +191.47%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking list/split/vec/10000
Benchmarking list/split/vec/10000: Warming up for 3.0000 s
Benchmarking list/split/vec/10000: Collecting 100 samples in estimated 5.0053 s (278k iterations)
Benchmarking list/split/vec/10000: Analyzing
list/split/vec/10000    time:   [29.057 ns 30.969 ns 32.744 ns]
                        change: [−9.7812% −2.4682% +5.6395%] (p = 0.53 > 0.05)
                        No change in performance detected.
Found 7 outliers among 100 measurements (7.00%)
  7 (7.00%) high mild

Benchmarking list/pop_front/pielist/100
Benchmarking list/pop_front/pielist/100: Warming up for 3.0000 s
Benchmarking list/pop_front/pielist/100: Collecting 100 samples in estimated 5.0066 s (3.4M iterations)
Benchmarking list/pop_front/pielist/100: Analyzing
list/pop_front/pielist/100
                        time:   [547.10 ns 552.51 ns 558.29 ns]
Found 9 outliers among 100 measurements (9.00%)
  6 (6.00%) low severe
  3 (3.00%) low mild
Benchmarking list/pop_front/vec/100
Benchmarking list/pop_front/vec/100: Warming up for 3.0000 s
Benchmarking list/pop_front/vec/100: Collecting 100 samples in estimated 5.0011 s (6.2M iterations)
Benchmarking list/pop_front/vec/100: Analyzing
list/pop_front/vec/100  time:   [640.17 ns 641.12 ns 642.25 ns]
Found 8 outliers among 100 measurements (8.00%)
  7 (7.00%) high mild
  1 (1.00%) high severe
Benchmarking list/pop_front/vecdeque/100
Benchmarking list/pop_front/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/pop_front/vecdeque/100: Collecting 100 samples in estimated 5.0000 s (25M iterations)
Benchmarking list/pop_front/vecdeque/100: Analyzing
list/pop_front/vecdeque/100
                        time:   [15.876 ns 15.994 ns 16.129 ns]
Benchmarking list/pop_front/pielist/1000
Benchmarking list/pop_front/pielist/1000: Warming up for 3.0000 s
Benchmarking list/pop_front/pielist/1000: Collecting 100 samples in estimated 5.0233 s (424k iterations)
Benchmarking list/pop_front/pielist/1000: Analyzing
list/pop_front/pielist/1000
                        time:   [5.4384 µs 5.4913 µs 5.5515 µs]
Found 6 outliers among 100 measurements (6.00%)
  2 (2.00%) low severe
  4 (4.00%) low mild
Benchmarking list/pop_front/vec/1000
Benchmarking list/pop_front/vec/1000: Warming up for 3.0000 s
Benchmarking list/pop_front/vec/1000: Collecting 100 samples in estimated 5.0361 s (207k iterations)
Benchmarking list/pop_front/vec/1000: Analyzing
list/pop_front/vec/1000 time:   [23.588 µs 23.626 µs 23.677 µs]
Found 8 outliers among 100 measurements (8.00%)
  2 (2.00%) high mild
  6 (6.00%) high severe
Benchmarking list/pop_front/vecdeque/1000
Benchmarking list/pop_front/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/pop_front/vecdeque/1000: Collecting 100 samples in estimated 5.0051 s (2.8M iterations)
Benchmarking list/pop_front/vecdeque/1000: Analyzing
list/pop_front/vecdeque/1000
                        time:   [18.548 ns 19.159 ns 19.705 ns]
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking list/pop_front/pielist/10000
Benchmarking list/pop_front/pielist/10000: Warming up for 3.0000 s
Benchmarking list/pop_front/pielist/10000: Collecting 100 samples in estimated 5.4330 s (45k iterations)
Benchmarking list/pop_front/pielist/10000: Analyzing
list/pop_front/pielist/10000
                        time:   [53.257 µs 53.982 µs 54.778 µs]
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) low severe
  3 (3.00%) low mild
Benchmarking list/pop_front/vec/10000
Benchmarking list/pop_front/vec/10000: Warming up for 3.0000 s
Benchmarking list/pop_front/vec/10000: Collecting 100 samples in estimated 5.1019 s (1300 iterations)
Benchmarking list/pop_front/vec/10000: Analyzing
list/pop_front/vec/10000
                        time:   [3.9102 ms 3.9168 ms 3.9236 ms]
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking list/pop_front/vecdeque/10000
Benchmarking list/pop_front/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/pop_front/vecdeque/10000: Collecting 100 samples in estimated 5.0267 s (278k iterations)
Benchmarking list/pop_front/vecdeque/10000: Analyzing
list/pop_front/vecdeque/10000
                        time:   [27.357 ns 28.745 ns 30.088 ns]
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

Benchmarking list/pop_back/pielist/100
Benchmarking list/pop_back/pielist/100: Warming up for 3.0000 s
Benchmarking list/pop_back/pielist/100: Collecting 100 samples in estimated 5.0022 s (3.2M iterations)
Benchmarking list/pop_back/pielist/100: Analyzing
list/pop_back/pielist/100
                        time:   [529.87 ns 531.05 ns 532.32 ns]
Found 8 outliers among 100 measurements (8.00%)
  8 (8.00%) low severe
Benchmarking list/pop_back/vec/100
Benchmarking list/pop_back/vec/100: Warming up for 3.0000 s
Benchmarking list/pop_back/vec/100: Collecting 100 samples in estimated 5.0007 s (25M iterations)
Benchmarking list/pop_back/vec/100: Analyzing
list/pop_back/vec/100   time:   [15.442 ns 15.515 ns 15.591 ns]
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild
Benchmarking list/pop_back/vecdeque/100
Benchmarking list/pop_back/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/pop_back/vecdeque/100: Collecting 100 samples in estimated 5.0003 s (25M iterations)
Benchmarking list/pop_back/vecdeque/100: Analyzing
list/pop_back/vecdeque/100
                        time:   [15.541 ns 15.623 ns 15.710 ns]
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking list/pop_back/pielist/1000
Benchmarking list/pop_back/pielist/1000: Warming up for 3.0000 s
Benchmarking list/pop_back/pielist/1000: Collecting 100 samples in estimated 5.0325 s (419k iterations)
Benchmarking list/pop_back/pielist/1000: Analyzing
list/pop_back/pielist/1000
                        time:   [5.7077 µs 5.7954 µs 5.8878 µs]
Found 9 outliers among 100 measurements (9.00%)
  6 (6.00%) low severe
  3 (3.00%) low mild
Benchmarking list/pop_back/vec/1000
Benchmarking list/pop_back/vec/1000: Warming up for 3.0000 s
Benchmarking list/pop_back/vec/1000: Collecting 100 samples in estimated 5.0079 s (2.8M iterations)
Benchmarking list/pop_back/vec/1000: Analyzing
list/pop_back/vec/1000  time:   [18.320 ns 19.227 ns 20.215 ns]
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking list/pop_back/vecdeque/1000
Benchmarking list/pop_back/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/pop_back/vecdeque/1000: Collecting 100 samples in estimated 5.0060 s (2.8M iterations)
Benchmarking list/pop_back/vecdeque/1000: Analyzing
list/pop_back/vecdeque/1000
                        time:   [18.172 ns 18.723 ns 19.233 ns]
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking list/pop_back/pielist/10000
Benchmarking list/pop_back/pielist/10000: Warming up for 3.0000 s
Benchmarking list/pop_back/pielist/10000: Collecting 100 samples in estimated 5.4018 s (45k iterations)
Benchmarking list/pop_back/pielist/10000: Analyzing
list/pop_back/pielist/10000
                        time:   [56.427 µs 57.439 µs 58.609 µs]
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking list/pop_back/vec/10000
Benchmarking list/pop_back/vec/10000: Warming up for 3.0000 s
Benchmarking list/pop_back/vec/10000: Collecting 100 samples in estimated 5.0053 s (278k iterations)
Benchmarking list/pop_back/vec/10000: Analyzing
list/pop_back/vec/10000 time:   [32.913 ns 35.772 ns 38.285 ns]
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking list/pop_back/vecdeque/10000
Benchmarking list/pop_back/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/pop_back/vecdeque/10000: Collecting 100 samples in estimated 5.0008 s (278k iterations)
Benchmarking list/pop_back/vecdeque/10000: Analyzing
list/pop_back/vecdeque/10000
                        time:   [29.329 ns 31.561 ns 33.630 ns]
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild

Benchmarking list/retain/pielist/100
Benchmarking list/retain/pielist/100: Warming up for 3.0000 s
Benchmarking list/retain/pielist/100: Collecting 100 samples in estimated 5.0027 s (3.4M iterations)
Benchmarking list/retain/pielist/100: Analyzing
list/retain/pielist/100 time:   [486.84 ns 489.84 ns 493.20 ns]
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) low severe
  2 (2.00%) low mild
Benchmarking list/retain/vec/100
Benchmarking list/retain/vec/100: Warming up for 3.0000 s
Benchmarking list/retain/vec/100: Collecting 100 samples in estimated 5.0010 s (21M iterations)
Benchmarking list/retain/vec/100: Analyzing
list/retain/vec/100     time:   [45.916 ns 47.589 ns 48.988 ns]
Benchmarking list/retain/vecdeque/100
Benchmarking list/retain/vecdeque/100: Warming up for 3.0000 s
Benchmarking list/retain/vecdeque/100: Collecting 100 samples in estimated 5.0004 s (18M iterations)
Benchmarking list/retain/vecdeque/100: Analyzing
list/retain/vecdeque/100
                        time:   [94.921 ns 96.040 ns 97.431 ns]
Found 9 outliers among 100 measurements (9.00%)
  4 (4.00%) low severe
  1 (1.00%) low mild
  4 (4.00%) high severe
Benchmarking list/retain/pielist/1000
Benchmarking list/retain/pielist/1000: Warming up for 3.0000 s
Benchmarking list/retain/pielist/1000: Collecting 100 samples in estimated 5.0223 s (434k iterations)
Benchmarking list/retain/pielist/1000: Analyzing
list/retain/pielist/1000
                        time:   [4.6489 µs 4.7133 µs 4.7841 µs]
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) low severe
  2 (2.00%) low mild
Benchmarking list/retain/vec/1000
Benchmarking list/retain/vec/1000: Warming up for 3.0000 s
Benchmarking list/retain/vec/1000: Collecting 100 samples in estimated 5.0047 s (2.3M iterations)
Benchmarking list/retain/vec/1000: Analyzing
list/retain/vec/1000    time:   [399.05 ns 422.60 ns 441.56 ns]
Benchmarking list/retain/vecdeque/1000
Benchmarking list/retain/vecdeque/1000: Warming up for 3.0000 s
Benchmarking list/retain/vecdeque/1000: Collecting 100 samples in estimated 5.0109 s (2.0M iterations)
Benchmarking list/retain/vecdeque/1000: Analyzing
list/retain/vecdeque/1000
                        time:   [821.79 ns 823.96 ns 826.46 ns]
Found 9 outliers among 100 measurements (9.00%)
  5 (5.00%) low severe
  2 (2.00%) low mild
  2 (2.00%) high mild
Benchmarking list/retain/pielist/10000
Benchmarking list/retain/pielist/10000: Warming up for 3.0000 s
Benchmarking list/retain/pielist/10000: Collecting 100 samples in estimated 5.0541 s (45k iterations)
Benchmarking list/retain/pielist/10000: Analyzing
list/retain/pielist/10000
                        time:   [43.032 µs 43.977 µs 45.010 µs]
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild
Benchmarking list/retain/vec/10000
Benchmarking list/retain/vec/10000: Warming up for 3.0000 s
Benchmarking list/retain/vec/10000: Collecting 100 samples in estimated 5.0353 s (227k iterations)
Benchmarking list/retain/vec/10000: Analyzing
list/retain/vec/10000   time:   [3.8968 µs 4.1149 µs 4.2903 µs]
Benchmarking list/retain/vecdeque/10000
Benchmarking list/retain/vecdeque/10000: Warming up for 3.0000 s
Benchmarking list/retain/vecdeque/10000: Collecting 100 samples in estimated 5.1182 s (207k iterations)
Benchmarking list/retain/vecdeque/10000: Analyzing
list/retain/vecdeque/10000
                        time:   [7.9226 µs 7.9729 µs 8.0346 µs]
Found 7 outliers among 100 measurements (7.00%)
  3 (3.00%) low severe
  1 (1.00%) low mild
  3 (3.00%) high mild

Benchmarking pool/shared_lists/pielist_shared/100x100
Benchmarking pool/shared_lists/pielist_shared/100x100: Warming up for 3.0000 s
Benchmarking pool/shared_lists/pielist_shared/100x100: Collecting 100 samples in estimated 5.1050 s (116k iterations)
Benchmarking pool/shared_lists/pielist_shared/100x100: Analyzing
pool/shared_lists/pielist_shared/100x100
                        time:   [43.649 µs 43.840 µs 44.095 µs]
                        change: [+25.540% +26.509% +27.570%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 12 outliers among 100 measurements (12.00%)
  4 (4.00%) low mild
  4 (4.00%) high mild
  4 (4.00%) high severe
Benchmarking pool/shared_lists/vec_separate/100x100
Benchmarking pool/shared_lists/vec_separate/100x100: Warming up for 3.0000 s
Benchmarking pool/shared_lists/vec_separate/100x100: Collecting 100 samples in estimated 5.0386 s (646k iterations)
Benchmarking pool/shared_lists/vec_separate/100x100: Analyzing
pool/shared_lists/vec_separate/100x100
                        time:   [7.7950 µs 7.8588 µs 7.9371 µs]
                        change: [+0.7846% +1.7294% +2.7022%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  10 (10.00%) high severe
Benchmarking pool/shared_lists/pielist_shared/1000x10
Benchmarking pool/shared_lists/pielist_shared/1000x10: Warming up for 3.0000 s
Benchmarking pool/shared_lists/pielist_shared/1000x10: Collecting 100 samples in estimated 5.2448 s (101k iterations)
Benchmarking pool/shared_lists/pielist_shared/1000x10: Analyzing
pool/shared_lists/pielist_shared/1000x10
                        time:   [52.280 µs 52.743 µs 53.330 µs]
                        change: [+28.924% +29.752% +30.627%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) high mild
  3 (3.00%) high severe
Benchmarking pool/shared_lists/vec_separate/1000x10
Benchmarking pool/shared_lists/vec_separate/1000x10: Warming up for 3.0000 s
Benchmarking pool/shared_lists/vec_separate/1000x10: Collecting 100 samples in estimated 5.0806 s (157k iterations)
Benchmarking pool/shared_lists/vec_separate/1000x10: Analyzing
pool/shared_lists/vec_separate/1000x10
                        time:   [32.455 µs 32.671 µs 32.924 µs]
                        change: [+1.1063% +1.6286% +2.1681%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe
Benchmarking pool/shared_lists/pielist_shared/10x1000
Benchmarking pool/shared_lists/pielist_shared/10x1000: Warming up for 3.0000 s
Benchmarking pool/shared_lists/pielist_shared/10x1000: Collecting 100 samples in estimated 5.1085 s (121k iterations)
Benchmarking pool/shared_lists/pielist_shared/10x1000: Analyzing
pool/shared_lists/pielist_shared/10x1000
                        time:   [42.102 µs 42.342 µs 42.685 µs]
                        change: [+27.053% +27.529% +28.190%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high severe
Benchmarking pool/shared_lists/vec_separate/10x1000
Benchmarking pool/shared_lists/vec_separate/10x1000: Warming up for 3.0000 s
Benchmarking pool/shared_lists/vec_separate/10x1000: Collecting 100 samples in estimated 5.0109 s (823k iterations)
Benchmarking pool/shared_lists/vec_separate/10x1000: Analyzing
pool/shared_lists/vec_separate/10x1000
                        time:   [6.0340 µs 6.0426 µs 6.0528 µs]
                        change: [+0.2893% +0.3976% +0.5154%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 14 outliers among 100 measurements (14.00%)
  3 (3.00%) low severe
  7 (7.00%) high mild
  4 (4.00%) high severe

Benchmarking pool/shrink_to_fit/pielist/100
Benchmarking pool/shrink_to_fit/pielist/100: Warming up for 3.0000 s
Benchmarking pool/shrink_to_fit/pielist/100: Collecting 100 samples in estimated 5.0097 s (2.3M iterations)
Benchmarking pool/shrink_to_fit/pielist/100: Analyzing
pool/shrink_to_fit/pielist/100
                        time:   [558.48 ns 567.52 ns 580.45 ns]
                        change: [+0.6199% +1.9445% +3.3482%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 18 outliers among 100 measurements (18.00%)
  11 (11.00%) low severe
  3 (3.00%) low mild
  1 (1.00%) high mild
  3 (3.00%) high severe
Benchmarking pool/shrink_to_fit/pielist/1000
Benchmarking pool/shrink_to_fit/pielist/1000: Warming up for 3.0000 s
Benchmarking pool/shrink_to_fit/pielist/1000: Collecting 100 samples in estimated 5.0139 s (283k iterations)
Benchmarking pool/shrink_to_fit/pielist/1000: Analyzing
pool/shrink_to_fit/pielist/1000
                        time:   [5.1541 µs 5.1806 µs 5.2063 µs]
                        change: [−0.3204% +0.7284% +1.7813%] (p = 0.17 > 0.05)
                        No change in performance detected.
Found 14 outliers among 100 measurements (14.00%)
  6 (6.00%) low severe
  4 (4.00%) low mild
  4 (4.00%) high mild
Benchmarking pool/shrink_to_fit/pielist/10000
Benchmarking pool/shrink_to_fit/pielist/10000: Warming up for 3.0000 s
Benchmarking pool/shrink_to_fit/pielist/10000: Collecting 100 samples in estimated 5.2789 s (30k iterations)
Benchmarking pool/shrink_to_fit/pielist/10000: Analyzing
pool/shrink_to_fit/pielist/10000
                        time:   [50.417 µs 50.623 µs 50.836 µs]
                        change: [−3.1709% −1.5614% −0.0856%] (p = 0.05 > 0.05)
                        No change in performance detected.
Found 8 outliers among 100 measurements (8.00%)
  4 (4.00%) low severe
  2 (2.00%) low mild
  2 (2.00%) high mild

Benchmarking heap/push/piefibheap/100
Benchmarking heap/push/piefibheap/100: Warming up for 3.0000 s
Benchmarking heap/push/piefibheap/100: Collecting 100 samples in estimated 5.0020 s (3.7M iterations)
Benchmarking heap/push/piefibheap/100: Analyzing
heap/push/piefibheap/100
                        time:   [1.2822 µs 1.2876 µs 1.2933 µs]
                        change: [+5.9304% +6.8273% +7.7210%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking heap/push/binaryheap/100
Benchmarking heap/push/binaryheap/100: Warming up for 3.0000 s
Benchmarking heap/push/binaryheap/100: Collecting 100 samples in estimated 5.0007 s (16M iterations)
Benchmarking heap/push/binaryheap/100: Analyzing
heap/push/binaryheap/100
                        time:   [311.38 ns 312.24 ns 313.15 ns]
                        change: [−2.7433% −1.9937% −1.3633%] (p = 0.00 < 0.05)
                        Performance has improved.
Benchmarking heap/push/priorityqueue/100
Benchmarking heap/push/priorityqueue/100: Warming up for 3.0000 s
Benchmarking heap/push/priorityqueue/100: Collecting 100 samples in estimated 5.0116 s (2.2M iterations)
Benchmarking heap/push/priorityqueue/100: Analyzing
heap/push/priorityqueue/100
                        time:   [2.3104 µs 2.3238 µs 2.3385 µs]
                        change: [−3.4336% −2.8239% −2.3072%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking heap/push/extfibheap/100
Benchmarking heap/push/extfibheap/100: Warming up for 3.0000 s
Benchmarking heap/push/extfibheap/100: Collecting 100 samples in estimated 5.0211 s (889k iterations)
Benchmarking heap/push/extfibheap/100: Analyzing
heap/push/extfibheap/100
                        time:   [5.6860 µs 5.6946 µs 5.7032 µs]
                        change: [+4.3330% +4.6057% +4.8716%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking heap/push/piefibheap/1000
Benchmarking heap/push/piefibheap/1000: Warming up for 3.0000 s
Benchmarking heap/push/piefibheap/1000: Collecting 100 samples in estimated 5.0564 s (449k iterations)
Benchmarking heap/push/piefibheap/1000: Analyzing
heap/push/piefibheap/1000
                        time:   [12.100 µs 12.175 µs 12.278 µs]
                        change: [+4.8516% +5.7913% +6.7335%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  6 (6.00%) low mild
  1 (1.00%) high mild
Benchmarking heap/push/binaryheap/1000
Benchmarking heap/push/binaryheap/1000: Warming up for 3.0000 s
Benchmarking heap/push/binaryheap/1000: Collecting 100 samples in estimated 5.0070 s (2.6M iterations)
Benchmarking heap/push/binaryheap/1000: Analyzing
heap/push/binaryheap/1000
                        time:   [1.8938 µs 1.8982 µs 1.9029 µs]
                        change: [+1.5715% +2.2426% +3.0491%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) high mild
  4 (4.00%) high severe
Benchmarking heap/push/priorityqueue/1000
Benchmarking heap/push/priorityqueue/1000: Warming up for 3.0000 s
Benchmarking heap/push/priorityqueue/1000: Collecting 100 samples in estimated 5.0884 s (227k iterations)
Benchmarking heap/push/priorityqueue/1000: Analyzing
heap/push/priorityqueue/1000
                        time:   [22.596 µs 22.749 µs 22.950 µs]
                        change: [+0.2694% +0.7739% +1.2885%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) high mild
  3 (3.00%) high severe
Benchmarking heap/push/extfibheap/1000
Benchmarking heap/push/extfibheap/1000: Warming up for 3.0000 s
Benchmarking heap/push/extfibheap/1000: Collecting 100 samples in estimated 5.0410 s (76k iterations)
Benchmarking heap/push/extfibheap/1000: Analyzing
heap/push/extfibheap/1000
                        time:   [67.051 µs 67.502 µs 68.185 µs]
                        change: [+2.9019% +3.2734% +3.7258%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe
Benchmarking heap/push/piefibheap/10000
Benchmarking heap/push/piefibheap/10000: Warming up for 3.0000 s
Benchmarking heap/push/piefibheap/10000: Collecting 100 samples in estimated 5.2512 s (30k iterations)
Benchmarking heap/push/piefibheap/10000: Analyzing
heap/push/piefibheap/10000
                        time:   [176.93 µs 177.90 µs 179.02 µs]
                        change: [−0.4203% +0.1118% +0.6117%] (p = 0.67 > 0.05)
                        No change in performance detected.
Found 17 outliers among 100 measurements (17.00%)
  4 (4.00%) low severe
  2 (2.00%) low mild
  7 (7.00%) high mild
  4 (4.00%) high severe
Benchmarking heap/push/binaryheap/10000
Benchmarking heap/push/binaryheap/10000: Warming up for 3.0000 s
Benchmarking heap/push/binaryheap/10000: Collecting 100 samples in estimated 5.0352 s (278k iterations)
Benchmarking heap/push/binaryheap/10000: Analyzing
heap/push/binaryheap/10000
                        time:   [17.040 µs 17.101 µs 17.176 µs]
                        change: [−0.0765% +0.2834% +0.6126%] (p = 0.11 > 0.05)
                        No change in performance detected.
Found 4 outliers among 100 measurements (4.00%)
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking heap/push/priorityqueue/10000
Benchmarking heap/push/priorityqueue/10000: Warming up for 3.0000 s
Benchmarking heap/push/priorityqueue/10000: Collecting 100 samples in estimated 5.0849 s (25k iterations)
Benchmarking heap/push/priorityqueue/10000: Analyzing
heap/push/priorityqueue/10000
                        time:   [201.17 µs 201.72 µs 202.55 µs]
                        change: [−0.2871% −0.0995% +0.1485%] (p = 0.40 > 0.05)
                        No change in performance detected.
Found 13 outliers among 100 measurements (13.00%)
  5 (5.00%) low severe
  3 (3.00%) low mild
  3 (3.00%) high mild
  2 (2.00%) high severe
Benchmarking heap/push/extfibheap/10000
Benchmarking heap/push/extfibheap/10000: Warming up for 3.0000 s
Benchmarking heap/push/extfibheap/10000: Collecting 100 samples in estimated 6.7351 s (10k iterations)
Benchmarking heap/push/extfibheap/10000: Analyzing
heap/push/extfibheap/10000
                        time:   [674.82 µs 680.46 µs 689.62 µs]
                        change: [+3.0174% +3.5497% +4.2933%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe

Benchmarking heap/pop/piefibheap/100
Benchmarking heap/pop/piefibheap/100: Warming up for 3.0000 s
Benchmarking heap/pop/piefibheap/100: Collecting 100 samples in estimated 5.0776 s (328k iterations)
Benchmarking heap/pop/piefibheap/100: Analyzing
heap/pop/piefibheap/100 time:   [9.6154 µs 9.6884 µs 9.7924 µs]
                        change: [−0.9655% −0.4997% −0.0089%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  6 (6.00%) low mild
  3 (3.00%) high severe
Benchmarking heap/pop/binaryheap/100
Benchmarking heap/pop/binaryheap/100: Warming up for 3.0000 s
Benchmarking heap/pop/binaryheap/100: Collecting 100 samples in estimated 5.0101 s (2.1M iterations)
Benchmarking heap/pop/binaryheap/100: Analyzing
heap/pop/binaryheap/100 time:   [1.5690 µs 1.5724 µs 1.5762 µs]
                        change: [−1.3730% −1.1004% −0.8441%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking heap/pop/priorityqueue/100
Benchmarking heap/pop/priorityqueue/100: Warming up for 3.0000 s
Benchmarking heap/pop/priorityqueue/100: Collecting 100 samples in estimated 5.0329 s (773k iterations)
Benchmarking heap/pop/priorityqueue/100: Analyzing
heap/pop/priorityqueue/100
                        time:   [2.5672 µs 2.5727 µs 2.5786 µs]
                        change: [−0.7120% −0.2251% +0.1958%] (p = 0.34 > 0.05)
                        No change in performance detected.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) high mild
Benchmarking heap/pop/extfibheap/100
Benchmarking heap/pop/extfibheap/100: Warming up for 3.0000 s
Benchmarking heap/pop/extfibheap/100: Collecting 100 samples in estimated 5.1271 s (177k iterations)
Benchmarking heap/pop/extfibheap/100: Analyzing
heap/pop/extfibheap/100 time:   [20.329 µs 20.372 µs 20.418 µs]
                        change: [−7.4113% +1.4074% +10.595%] (p = 0.79 > 0.05)
                        No change in performance detected.
Found 9 outliers among 100 measurements (9.00%)
  3 (3.00%) high mild
  6 (6.00%) high severe
Benchmarking heap/pop/piefibheap/1000
Benchmarking heap/pop/piefibheap/1000: Warming up for 3.0000 s
Benchmarking heap/pop/piefibheap/1000: Collecting 100 samples in estimated 5.7490 s (25k iterations)
Benchmarking heap/pop/piefibheap/1000: Analyzing
heap/pop/piefibheap/1000
                        time:   [190.13 µs 190.51 µs 190.95 µs]
                        change: [−6.8708% −6.3319% −5.6621%] (p = 0.00 < 0.05)
                        Performance has improved.
Found 8 outliers among 100 measurements (8.00%)
  2 (2.00%) high mild
  6 (6.00%) high severe
Benchmarking heap/pop/binaryheap/1000
Benchmarking heap/pop/binaryheap/1000: Warming up for 3.0000 s
Benchmarking heap/pop/binaryheap/1000: Collecting 100 samples in estimated 5.0973 s (207k iterations)
Benchmarking heap/pop/binaryheap/1000: Analyzing
heap/pop/binaryheap/1000
                        time:   [17.568 µs 17.643 µs 17.738 µs]
                        change: [+1.9395% +2.3629% +2.8730%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 16 outliers among 100 measurements (16.00%)
  2 (2.00%) low severe
  2 (2.00%) low mild
  6 (6.00%) high mild
  6 (6.00%) high severe
Benchmarking heap/pop/priorityqueue/1000
Benchmarking heap/pop/priorityqueue/1000: Warming up for 3.0000 s
Benchmarking heap/pop/priorityqueue/1000: Collecting 100 samples in estimated 5.2355 s (61k iterations)
Benchmarking heap/pop/priorityqueue/1000: Analyzing
heap/pop/priorityqueue/1000
                        time:   [42.623 µs 42.784 µs 42.985 µs]
                        change: [+1.5196% +2.0717% +2.6239%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking heap/pop/extfibheap/1000
Benchmarking heap/pop/extfibheap/1000: Warming up for 3.0000 s
Benchmarking heap/pop/extfibheap/1000: Collecting 100 samples in estimated 6.9443 s (15k iterations)
Benchmarking heap/pop/extfibheap/1000: Analyzing
heap/pop/extfibheap/1000
                        time:   [412.26 µs 413.50 µs 415.26 µs]
                        change: [+1.2770% +1.6348% +2.0207%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking heap/pop/piefibheap/10000
Benchmarking heap/pop/piefibheap/10000: Warming up for 3.0000 s
Benchmarking heap/pop/piefibheap/10000: Collecting 100 samples in estimated 5.1416 s (1500 iterations)
Benchmarking heap/pop/piefibheap/10000: Analyzing
heap/pop/piefibheap/10000
                        time:   [2.9157 ms 2.9250 ms 2.9363 ms]
                        change: [+1.6481% +1.9988% +2.4123%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high severe
Benchmarking heap/pop/binaryheap/10000
Benchmarking heap/pop/binaryheap/10000: Warming up for 3.0000 s
Benchmarking heap/pop/binaryheap/10000: Collecting 100 samples in estimated 7.1829 s (15k iterations)
Benchmarking heap/pop/binaryheap/10000: Analyzing
heap/pop/binaryheap/10000
                        time:   [341.89 µs 343.46 µs 345.34 µs]
                        change: [+0.6830% +1.0216% +1.4263%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
  3 (3.00%) high severe
Benchmarking heap/pop/priorityqueue/10000
Benchmarking heap/pop/priorityqueue/10000: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.4s, enable flat sampling, or reduce sample count to 60.

Benchmarking heap/pop/priorityqueue/10000: Collecting 100 samples in estimated 6.3745 s (5050 iterations)
Benchmarking heap/pop/priorityqueue/10000: Analyzing
heap/pop/priorityqueue/10000
                        time:   [825.23 µs 827.63 µs 830.42 µs]
                        change: [+0.8491% +1.1336% +1.4699%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 13 outliers among 100 measurements (13.00%)
  9 (9.00%) high mild
  4 (4.00%) high severe
Benchmarking heap/pop/extfibheap/10000
Benchmarking heap/pop/extfibheap/10000: Warming up for 3.0000 s
Benchmarking heap/pop/extfibheap/10000: Collecting 100 samples in estimated 5.4255 s (900 iterations)
Benchmarking heap/pop/extfibheap/10000: Analyzing
heap/pop/extfibheap/10000
                        time:   [5.5183 ms 5.5355 ms 5.5581 ms]
                        change: [+0.6944% +1.0701% +1.4815%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe

Benchmarking heap/decrease_key/piefibheap/100
Benchmarking heap/decrease_key/piefibheap/100: Warming up for 3.0000 s
Benchmarking heap/decrease_key/piefibheap/100: Collecting 100 samples in estimated 5.0076 s (702k iterations)
Benchmarking heap/decrease_key/piefibheap/100: Analyzing
heap/decrease_key/piefibheap/100
                        time:   [851.50 ns 860.82 ns 870.91 ns]
                        change: [+0.8855% +5.0276% +9.5521%] (p = 0.02 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  7 (7.00%) low severe
  2 (2.00%) low mild
Benchmarking heap/decrease_key/priorityqueue/100
Benchmarking heap/decrease_key/priorityqueue/100: Warming up for 3.0000 s
Benchmarking heap/decrease_key/priorityqueue/100: Collecting 100 samples in estimated 5.0107 s (909k iterations)
Benchmarking heap/decrease_key/priorityqueue/100: Analyzing
heap/decrease_key/priorityqueue/100
                        time:   [1.4548 µs 1.4574 µs 1.4605 µs]
                        change: [+0.0484% +1.0224% +1.8857%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 16 outliers among 100 measurements (16.00%)
  3 (3.00%) low severe
  6 (6.00%) low mild
  6 (6.00%) high mild
  1 (1.00%) high severe
Benchmarking heap/decrease_key/binaryheap_lazy/100
Benchmarking heap/decrease_key/binaryheap_lazy/100: Warming up for 3.0000 s
Benchmarking heap/decrease_key/binaryheap_lazy/100: Collecting 100 samples in estimated 5.0000 s (3.0M iterations)
Benchmarking heap/decrease_key/binaryheap_lazy/100: Analyzing
heap/decrease_key/binaryheap_lazy/100
                        time:   [461.08 ns 462.43 ns 463.91 ns]
                        change: [+0.7257% +1.2320% +1.6722%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 9 outliers among 100 measurements (9.00%)
  3 (3.00%) low mild
  4 (4.00%) high mild
  2 (2.00%) high severe
Benchmarking heap/decrease_key/piefibheap/1000
Benchmarking heap/decrease_key/piefibheap/1000: Warming up for 3.0000 s
Benchmarking heap/decrease_key/piefibheap/1000: Collecting 100 samples in estimated 5.0136 s (81k iterations)
Benchmarking heap/decrease_key/piefibheap/1000: Analyzing
heap/decrease_key/piefibheap/1000
                        time:   [7.7930 µs 7.8672 µs 7.9376 µs]
                        change: [+4.2564% +8.2254% +12.395%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 11 outliers among 100 measurements (11.00%)
  6 (6.00%) low severe
  1 (1.00%) low mild
  3 (3.00%) high mild
  1 (1.00%) high severe
Benchmarking heap/decrease_key/priorityqueue/1000
Benchmarking heap/decrease_key/priorityqueue/1000: Warming up for 3.0000 s
Benchmarking heap/decrease_key/priorityqueue/1000: Collecting 100 samples in estimated 5.1291 s (91k iterations)
Benchmarking heap/decrease_key/priorityqueue/1000: Analyzing
heap/decrease_key/priorityqueue/1000
                        time:   [15.408 µs 15.455 µs 15.509 µs]
                        change: [+1.4758% +2.0355% +2.6143%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 11 outliers among 100 measurements (11.00%)
  6 (6.00%) low severe
  4 (4.00%) low mild
  1 (1.00%) high severe
Benchmarking heap/decrease_key/binaryheap_lazy/1000
Benchmarking heap/decrease_key/binaryheap_lazy/1000: Warming up for 3.0000 s
Benchmarking heap/decrease_key/binaryheap_lazy/1000: Collecting 100 samples in estimated 5.0791 s (273k iterations)
Benchmarking heap/decrease_key/binaryheap_lazy/1000: Analyzing
heap/decrease_key/binaryheap_lazy/1000
                        time:   [4.4578 µs 4.4655 µs 4.4756 µs]
                        change: [−0.4167% −0.0487% +0.3170%] (p = 0.79 > 0.05)
                        No change in performance detected.
Found 19 outliers among 100 measurements (19.00%)
  12 (12.00%) low mild
  3 (3.00%) high mild
  4 (4.00%) high severe
Benchmarking heap/decrease_key/piefibheap/10000
Benchmarking heap/decrease_key/piefibheap/10000: Warming up for 3.0000 s
Benchmarking heap/decrease_key/piefibheap/10000: Collecting 100 samples in estimated 6.3414 s (10k iterations)
Benchmarking heap/decrease_key/piefibheap/10000: Analyzing
heap/decrease_key/piefibheap/10000
                        time:   [110.53 µs 113.59 µs 116.28 µs]
                        change: [+3.1140% +6.8658% +10.630%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 20 outliers among 100 measurements (20.00%)
  4 (4.00%) low severe
  1 (1.00%) low mild
  13 (13.00%) high mild
  2 (2.00%) high severe
Benchmarking heap/decrease_key/priorityqueue/10000
Benchmarking heap/decrease_key/priorityqueue/10000: Warming up for 3.0000 s
Benchmarking heap/decrease_key/priorityqueue/10000: Collecting 100 samples in estimated 6.5688 s (10k iterations)
Benchmarking heap/decrease_key/priorityqueue/10000: Analyzing
heap/decrease_key/priorityqueue/10000
                        time:   [248.57 µs 249.25 µs 250.02 µs]
                        change: [+2.3657% +3.0293% +3.6271%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe
Benchmarking heap/decrease_key/binaryheap_lazy/10000
Benchmarking heap/decrease_key/binaryheap_lazy/10000: Warming up for 3.0000 s
Benchmarking heap/decrease_key/binaryheap_lazy/10000: Collecting 100 samples in estimated 6.2052 s (25k iterations)
Benchmarking heap/decrease_key/binaryheap_lazy/10000: Analyzing
heap/decrease_key/binaryheap_lazy/10000
                        time:   [47.893 µs 47.985 µs 48.084 µs]
                        change: [−0.1103% +0.3958% +0.8985%] (p = 0.13 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) low severe
  3 (3.00%) low mild

Benchmarking heap/push_pop/piefibheap/100
Benchmarking heap/push_pop/piefibheap/100: Warming up for 3.0000 s
Benchmarking heap/push_pop/piefibheap/100: Collecting 100 samples in estimated 5.0021 s (550k iterations)
Benchmarking heap/push_pop/piefibheap/100: Analyzing
heap/push_pop/piefibheap/100
                        time:   [9.0274 µs 9.0390 µs 9.0522 µs]
                        change: [+3.5957% +3.8359% +4.0942%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking heap/push_pop/binaryheap/100
Benchmarking heap/push_pop/binaryheap/100: Warming up for 3.0000 s
Benchmarking heap/push_pop/binaryheap/100: Collecting 100 samples in estimated 5.0012 s (2.8M iterations)
Benchmarking heap/push_pop/binaryheap/100: Analyzing
heap/push_pop/binaryheap/100
                        time:   [1.7858 µs 1.7868 µs 1.7880 µs]
                        change: [−0.2788% −0.0350% +0.2401%] (p = 0.81 > 0.05)
                        No change in performance detected.
Found 23 outliers among 100 measurements (23.00%)
  7 (7.00%) low severe
  1 (1.00%) low mild
  3 (3.00%) high mild
  12 (12.00%) high severe
Benchmarking heap/push_pop/priorityqueue/100
Benchmarking heap/push_pop/priorityqueue/100: Warming up for 3.0000 s
Benchmarking heap/push_pop/priorityqueue/100: Collecting 100 samples in estimated 5.0072 s (1.1M iterations)
Benchmarking heap/push_pop/priorityqueue/100: Analyzing
heap/push_pop/priorityqueue/100
                        time:   [4.4454 µs 4.4543 µs 4.4650 µs]
                        change: [−0.2657% +0.2897% +0.8808%] (p = 0.40 > 0.05)
                        No change in performance detected.
Found 13 outliers among 100 measurements (13.00%)
  4 (4.00%) high mild
  9 (9.00%) high severe
Benchmarking heap/push_pop/extfibheap/100
Benchmarking heap/push_pop/extfibheap/100: Warming up for 3.0000 s
Benchmarking heap/push_pop/extfibheap/100: Collecting 100 samples in estimated 5.0404 s (252k iterations)
Benchmarking heap/push_pop/extfibheap/100: Analyzing
heap/push_pop/extfibheap/100
                        time:   [19.820 µs 19.864 µs 19.911 µs]
Found 13 outliers among 100 measurements (13.00%)
  4 (4.00%) high mild
  9 (9.00%) high severe
Benchmarking heap/push_pop/piefibheap/1000
Benchmarking heap/push_pop/piefibheap/1000: Warming up for 3.0000 s
Benchmarking heap/push_pop/piefibheap/1000: Collecting 100 samples in estimated 5.2843 s (45k iterations)
Benchmarking heap/push_pop/piefibheap/1000: Analyzing
heap/push_pop/piefibheap/1000
                        time:   [116.75 µs 117.10 µs 117.49 µs]
                        change: [+1.2615% +1.6530% +2.0993%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 24 outliers among 100 measurements (24.00%)
  2 (2.00%) low severe
  13 (13.00%) high mild
  9 (9.00%) high severe
Benchmarking heap/push_pop/binaryheap/1000
Benchmarking heap/push_pop/binaryheap/1000: Warming up for 3.0000 s
Benchmarking heap/push_pop/binaryheap/1000: Collecting 100 samples in estimated 5.0240 s (278k iterations)
Benchmarking heap/push_pop/binaryheap/1000: Analyzing
heap/push_pop/binaryheap/1000
                        time:   [17.930 µs 17.980 µs 18.049 µs]
                        change: [−0.9695% −0.4809% +0.2524%] (p = 0.09 > 0.05)
                        No change in performance detected.
Found 25 outliers among 100 measurements (25.00%)
  15 (15.00%) low severe
  2 (2.00%) low mild
  4 (4.00%) high mild
  4 (4.00%) high severe
Benchmarking heap/push_pop/priorityqueue/1000
Benchmarking heap/push_pop/priorityqueue/1000: Warming up for 3.0000 s
Benchmarking heap/push_pop/priorityqueue/1000: Collecting 100 samples in estimated 5.0320 s (86k iterations)
Benchmarking heap/push_pop/priorityqueue/1000: Analyzing
heap/push_pop/priorityqueue/1000
                        time:   [58.034 µs 58.315 µs 58.697 µs]
                        change: [−0.0010% +0.4626% +0.9297%] (p = 0.07 > 0.05)
                        No change in performance detected.
Found 21 outliers among 100 measurements (21.00%)
  1 (1.00%) low severe
  10 (10.00%) low mild
  3 (3.00%) high mild
  7 (7.00%) high severe
Benchmarking heap/push_pop/extfibheap/1000
Benchmarking heap/push_pop/extfibheap/1000: Warming up for 3.0000 s
Benchmarking heap/push_pop/extfibheap/1000: Collecting 100 samples in estimated 6.2759 s (20k iterations)
Benchmarking heap/push_pop/extfibheap/1000: Analyzing
heap/push_pop/extfibheap/1000
                        time:   [312.53 µs 313.78 µs 315.18 µs]
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe
Benchmarking heap/push_pop/piefibheap/10000
Benchmarking heap/push_pop/piefibheap/10000: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.4s, enable flat sampling, or reduce sample count to 50.

Benchmarking heap/push_pop/piefibheap/10000: Collecting 100 samples in estimated 7.4199 s (5050 iterations)
Benchmarking heap/push_pop/piefibheap/10000: Analyzing
heap/push_pop/piefibheap/10000
                        time:   [1.4599 ms 1.4635 ms 1.4681 ms]
                        change: [+1.0520% +1.3179% +1.6499%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 13 outliers among 100 measurements (13.00%)
  8 (8.00%) high mild
  5 (5.00%) high severe
Benchmarking heap/push_pop/binaryheap/10000
Benchmarking heap/push_pop/binaryheap/10000: Warming up for 3.0000 s
Benchmarking heap/push_pop/binaryheap/10000: Collecting 100 samples in estimated 5.9178 s (20k iterations)
Benchmarking heap/push_pop/binaryheap/10000: Analyzing
heap/push_pop/binaryheap/10000
                        time:   [290.77 µs 291.25 µs 291.78 µs]
                        change: [+3.3792% +4.0293% +4.8364%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 10 outliers among 100 measurements (10.00%)
  2 (2.00%) high mild
  8 (8.00%) high severe
Benchmarking heap/push_pop/priorityqueue/10000
Benchmarking heap/push_pop/priorityqueue/10000: Warming up for 3.0000 s
Benchmarking heap/push_pop/priorityqueue/10000: Collecting 100 samples in estimated 8.0403 s (10k iterations)
Benchmarking heap/push_pop/priorityqueue/10000: Analyzing
heap/push_pop/priorityqueue/10000
                        time:   [796.00 µs 797.32 µs 798.96 µs]
                        change: [−0.3960% +0.0327% +0.5419%] (p = 0.89 > 0.05)
                        No change in performance detected.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high severe
Benchmarking heap/push_pop/extfibheap/10000
Benchmarking heap/push_pop/extfibheap/10000: Warming up for 3.0000 s
Benchmarking heap/push_pop/extfibheap/10000: Collecting 100 samples in estimated 5.1624 s (1500 iterations)
Benchmarking heap/push_pop/extfibheap/10000: Analyzing
heap/push_pop/extfibheap/10000
                        time:   [3.3918 ms 3.3996 ms 3.4075 ms]
Found 13 outliers among 100 measurements (13.00%)
  3 (3.00%) low mild
  10 (10.00%) high mild

Benchmarking heap/peek/piefibheap
Benchmarking heap/peek/piefibheap: Warming up for 3.0000 s
Benchmarking heap/peek/piefibheap: Collecting 100 samples in estimated 5.0000 s (1.3B iterations)
Benchmarking heap/peek/piefibheap: Analyzing
heap/peek/piefibheap    time:   [3.8879 ns 3.8933 ns 3.8984 ns]
                        change: [−0.7319% −0.4134% −0.1426%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 23 outliers among 100 measurements (23.00%)
  8 (8.00%) low severe
  3 (3.00%) low mild
  4 (4.00%) high mild
  8 (8.00%) high severe
Benchmarking heap/peek/binaryheap
Benchmarking heap/peek/binaryheap: Warming up for 3.0000 s
Benchmarking heap/peek/binaryheap: Collecting 100 samples in estimated 5.0000 s (24B iterations)
Benchmarking heap/peek/binaryheap: Analyzing
heap/peek/binaryheap    time:   [220.51 ps 222.11 ps 223.76 ps]
                        change: [+3.7229% +4.7771% +5.8794%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe
Benchmarking heap/peek/priorityqueue
Benchmarking heap/peek/priorityqueue: Warming up for 3.0000 s
Benchmarking heap/peek/priorityqueue: Collecting 100 samples in estimated 5.0000 s (1.2B iterations)
Benchmarking heap/peek/priorityqueue: Analyzing
heap/peek/priorityqueue time:   [4.1047 ns 4.1127 ns 4.1242 ns]
                        change: [+0.4791% +0.8607% +1.2964%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 11 outliers among 100 measurements (11.00%)
  7 (7.00%) high mild
  4 (4.00%) high severe
Benchmarking heap/peek/extfibheap
Benchmarking heap/peek/extfibheap: Warming up for 3.0000 s
Benchmarking heap/peek/extfibheap: Collecting 100 samples in estimated 5.0000 s (1.3B iterations)
Benchmarking heap/peek/extfibheap: Analyzing
heap/peek/extfibheap    time:   [3.8959 ns 3.9065 ns 3.9190 ns]
Found 19 outliers among 100 measurements (19.00%)
  6 (6.00%) low severe
  5 (5.00%) high mild
  8 (8.00%) high severe

Benchmarking heap/drain/piefibheap/100
Benchmarking heap/drain/piefibheap/100: Warming up for 3.0000 s
Benchmarking heap/drain/piefibheap/100: Collecting 100 samples in estimated 5.0248 s (359k iterations)
Benchmarking heap/drain/piefibheap/100: Analyzing
heap/drain/piefibheap/100
                        time:   [8.8169 µs 8.8930 µs 9.0008 µs]
                        change: [−1.8591% −1.3389% −0.7660%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 10 outliers among 100 measurements (10.00%)
  2 (2.00%) low mild
  5 (5.00%) high mild
  3 (3.00%) high severe
Benchmarking heap/drain/binaryheap/100
Benchmarking heap/drain/binaryheap/100: Warming up for 3.0000 s
Benchmarking heap/drain/binaryheap/100: Collecting 100 samples in estimated 5.0001 s (3.9M iterations)
Benchmarking heap/drain/binaryheap/100: Analyzing
heap/drain/binaryheap/100
                        time:   [828.95 ns 830.99 ns 833.67 ns]
                        change: [−0.0893% +0.1879% +0.4758%] (p = 0.20 > 0.05)
                        No change in performance detected.
Found 32 outliers among 100 measurements (32.00%)
  14 (14.00%) low severe
  8 (8.00%) low mild
  3 (3.00%) high mild
  7 (7.00%) high severe
Benchmarking heap/drain/extfibheap/100
Benchmarking heap/drain/extfibheap/100: Warming up for 3.0000 s
Benchmarking heap/drain/extfibheap/100: Collecting 100 samples in estimated 5.1466 s (172k iterations)
Benchmarking heap/drain/extfibheap/100: Analyzing
heap/drain/extfibheap/100
                        time:   [20.389 µs 20.420 µs 20.453 µs]
Found 14 outliers among 100 measurements (14.00%)
  1 (1.00%) low mild
  4 (4.00%) high mild
  9 (9.00%) high severe
Benchmarking heap/drain/piefibheap/1000
Benchmarking heap/drain/piefibheap/1000: Warming up for 3.0000 s
Benchmarking heap/drain/piefibheap/1000: Collecting 100 samples in estimated 6.1115 s (25k iterations)
Benchmarking heap/drain/piefibheap/1000: Analyzing
heap/drain/piefibheap/1000
                        time:   [206.88 µs 207.33 µs 207.79 µs]
                        change: [−0.8322% −0.5991% −0.3303%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 18 outliers among 100 measurements (18.00%)
  9 (9.00%) low mild
  5 (5.00%) high mild
  4 (4.00%) high severe
Benchmarking heap/drain/binaryheap/1000
Benchmarking heap/drain/binaryheap/1000: Warming up for 3.0000 s
Benchmarking heap/drain/binaryheap/1000: Collecting 100 samples in estimated 5.0817 s (283k iterations)
Benchmarking heap/drain/binaryheap/1000: Analyzing
heap/drain/binaryheap/1000
                        time:   [14.645 µs 14.654 µs 14.662 µs]
                        change: [+0.2456% +0.4430% +0.6328%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
Benchmarking heap/drain/extfibheap/1000
Benchmarking heap/drain/extfibheap/1000: Warming up for 3.0000 s
Benchmarking heap/drain/extfibheap/1000: Collecting 100 samples in estimated 7.0950 s (15k iterations)
Benchmarking heap/drain/extfibheap/1000: Analyzing
heap/drain/extfibheap/1000
                        time:   [411.76 µs 412.67 µs 413.63 µs]
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking heap/drain/piefibheap/10000
Benchmarking heap/drain/piefibheap/10000: Warming up for 3.0000 s
Benchmarking heap/drain/piefibheap/10000: Collecting 100 samples in estimated 5.0113 s (1500 iterations)
Benchmarking heap/drain/piefibheap/10000: Analyzing
heap/drain/piefibheap/10000
                        time:   [2.9217 ms 2.9315 ms 2.9461 ms]
                        change: [−1.0405% −0.5270% +0.0752%] (p = 0.04 < 0.05)
                        Change within noise threshold.
Found 17 outliers among 100 measurements (17.00%)
  7 (7.00%) low severe
  2 (2.00%) low mild
  1 (1.00%) high mild
  7 (7.00%) high severe
Benchmarking heap/drain/binaryheap/10000
Benchmarking heap/drain/binaryheap/10000: Warming up for 3.0000 s
Benchmarking heap/drain/binaryheap/10000: Collecting 100 samples in estimated 6.4424 s (20k iterations)
Benchmarking heap/drain/binaryheap/10000: Analyzing
heap/drain/binaryheap/10000
                        time:   [233.73 µs 234.21 µs 234.73 µs]
                        change: [+0.8918% +1.4769% +2.2046%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking heap/drain/extfibheap/10000
Benchmarking heap/drain/extfibheap/10000: Warming up for 3.0000 s
Benchmarking heap/drain/extfibheap/10000: Collecting 100 samples in estimated 5.4756 s (900 iterations)
Benchmarking heap/drain/extfibheap/10000: Analyzing
heap/drain/extfibheap/10000
                        time:   [5.5080 ms 5.5134 ms 5.5192 ms]
Found 8 outliers among 100 measurements (8.00%)
  6 (6.00%) high mild
  2 (2.00%) high severe

Benchmarking heap/mixed_workload/piefibheap/100
Benchmarking heap/mixed_workload/piefibheap/100: Warming up for 3.0000 s
Benchmarking heap/mixed_workload/piefibheap/100: Collecting 100 samples in estimated 5.0457 s (485k iterations)
Benchmarking heap/mixed_workload/piefibheap/100: Analyzing
heap/mixed_workload/piefibheap/100
                        time:   [10.293 µs 10.320 µs 10.349 µs]
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking heap/mixed_workload/binaryheap_lazy/100
Benchmarking heap/mixed_workload/binaryheap_lazy/100: Warming up for 3.0000 s
Benchmarking heap/mixed_workload/binaryheap_lazy/100: Collecting 100 samples in estimated 5.0019 s (1.7M iterations)
Benchmarking heap/mixed_workload/binaryheap_lazy/100: Analyzing
heap/mixed_workload/binaryheap_lazy/100
                        time:   [2.9563 µs 2.9639 µs 2.9721 µs]
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking heap/mixed_workload/priorityqueue/100
Benchmarking heap/mixed_workload/priorityqueue/100: Warming up for 3.0000 s
Benchmarking heap/mixed_workload/priorityqueue/100: Collecting 100 samples in estimated 5.0072 s (995k iterations)
Benchmarking heap/mixed_workload/priorityqueue/100: Analyzing
heap/mixed_workload/priorityqueue/100
                        time:   [5.0025 µs 5.0117 µs 5.0218 µs]
Benchmarking heap/mixed_workload/piefibheap/1000
Benchmarking heap/mixed_workload/piefibheap/1000: Warming up for 3.0000 s
Benchmarking heap/mixed_workload/piefibheap/1000: Collecting 100 samples in estimated 5.5098 s (30k iterations)
Benchmarking heap/mixed_workload/piefibheap/1000: Analyzing
heap/mixed_workload/piefibheap/1000
                        time:   [181.07 µs 181.68 µs 182.55 µs]
Found 17 outliers among 100 measurements (17.00%)
  1 (1.00%) low mild
  14 (14.00%) high mild
  2 (2.00%) high severe
Benchmarking heap/mixed_workload/binaryheap_lazy/1000
Benchmarking heap/mixed_workload/binaryheap_lazy/1000: Warming up for 3.0000 s
Benchmarking heap/mixed_workload/binaryheap_lazy/1000: Collecting 100 samples in estimated 5.1335 s (152k iterations)
Benchmarking heap/mixed_workload/binaryheap_lazy/1000: Analyzing
heap/mixed_workload/binaryheap_lazy/1000
                        time:   [32.594 µs 32.793 µs 33.072 µs]
Found 28 outliers among 100 measurements (28.00%)
  9 (9.00%) low severe
  2 (2.00%) low mild
  6 (6.00%) high mild
  11 (11.00%) high severe
Benchmarking heap/mixed_workload/priorityqueue/1000
Benchmarking heap/mixed_workload/priorityqueue/1000: Warming up for 3.0000 s
Benchmarking heap/mixed_workload/priorityqueue/1000: Collecting 100 samples in estimated 5.0612 s (61k iterations)
Benchmarking heap/mixed_workload/priorityqueue/1000: Analyzing
heap/mixed_workload/priorityqueue/1000
                        time:   [82.975 µs 83.123 µs 83.290 µs]
Benchmarking heap/mixed_workload/piefibheap/10000
Benchmarking heap/mixed_workload/piefibheap/10000: Warming up for 3.0000 s
Benchmarking heap/mixed_workload/piefibheap/10000: Collecting 100 samples in estimated 5.1310 s (1900 iterations)
Benchmarking heap/mixed_workload/piefibheap/10000: Analyzing
heap/mixed_workload/piefibheap/10000
                        time:   [2.6922 ms 2.6968 ms 2.7019 ms]
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe
Benchmarking heap/mixed_workload/binaryheap_lazy/10000
Benchmarking heap/mixed_workload/binaryheap_lazy/10000: Warming up for 3.0000 s
Benchmarking heap/mixed_workload/binaryheap_lazy/10000: Collecting 100 samples in estimated 6.8555 s (10k iterations)
Benchmarking heap/mixed_workload/binaryheap_lazy/10000: Analyzing
heap/mixed_workload/binaryheap_lazy/10000
                        time:   [665.42 µs 668.95 µs 674.34 µs]
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high severe
Benchmarking heap/mixed_workload/priorityqueue/10000
Benchmarking heap/mixed_workload/priorityqueue/10000: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.0s, enable flat sampling, or reduce sample count to 60.

Benchmarking heap/mixed_workload/priorityqueue/10000: Collecting 100 samples in estimated 6.0484 s (5050 iterations)
Benchmarking heap/mixed_workload/priorityqueue/10000: Analyzing
heap/mixed_workload/priorityqueue/10000
                        time:   [1.1847 ms 1.1880 ms 1.1927 ms]
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking list/mid_modify/linkedlist/100
Benchmarking list/mid_modify/linkedlist/100: Warming up for 3.0000 s
Benchmarking list/mid_modify/linkedlist/100: Collecting 100 samples in estimated 5.0085 s (1.8M iterations)
Benchmarking list/mid_modify/linkedlist/100: Analyzing
list/mid_modify/linkedlist/100
                        time:   [1.5243 µs 1.5339 µs 1.5462 µs]
                        change: [−35.202% −0.2770% +52.534%] (p = 0.94 > 0.05)
                        No change in performance detected.
Found 30 outliers among 100 measurements (30.00%)
  8 (8.00%) low severe
  5 (5.00%) low mild
  7 (7.00%) high mild
  10 (10.00%) high severe
Benchmarking list/mid_modify/linkedlist/1000
Benchmarking list/mid_modify/linkedlist/1000: Warming up for 3.0000 s
Benchmarking list/mid_modify/linkedlist/1000: Collecting 100 samples in estimated 5.0210 s (182k iterations)
Benchmarking list/mid_modify/linkedlist/1000: Analyzing
list/mid_modify/linkedlist/1000
                        time:   [14.603 µs 14.691 µs 14.821 µs]
                        change: [−3.6188% +8.7837% +40.031%] (p = 0.64 > 0.05)
                        No change in performance detected.
Found 11 outliers among 100 measurements (11.00%)
  2 (2.00%) low mild
  6 (6.00%) high mild
  3 (3.00%) high severe
Benchmarking list/mid_modify/linkedlist/10000
Benchmarking list/mid_modify/linkedlist/10000: Warming up for 3.0000 s
Benchmarking list/mid_modify/linkedlist/10000: Collecting 100 samples in estimated 5.5617 s (20k iterations)
Benchmarking list/mid_modify/linkedlist/10000: Analyzing
list/mid_modify/linkedlist/10000
                        time:   [145.07 µs 146.11 µs 147.39 µs]
                        change: [−13.084% −0.8373% +11.623%] (p = 0.88 > 0.05)
                        No change in performance detected.
Found 14 outliers among 100 measurements (14.00%)
  3 (3.00%) high mild
  11 (11.00%) high severe

Benchmarking list/iterate/linkedlist/100
Benchmarking list/iterate/linkedlist/100: Warming up for 3.0000 s
Benchmarking list/iterate/linkedlist/100: Collecting 100 samples in estimated 5.0001 s (66M iterations)
Benchmarking list/iterate/linkedlist/100: Analyzing
list/iterate/linkedlist/100
                        time:   [76.329 ns 76.652 ns 77.039 ns]
                        change: [+0.0948% +0.6645% +1.1784%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) high mild
  1 (1.00%) high severe
Benchmarking list/iterate/linkedlist/1000
Benchmarking list/iterate/linkedlist/1000: Warming up for 3.0000 s
Benchmarking list/iterate/linkedlist/1000: Collecting 100 samples in estimated 5.0041 s (4.5M iterations)
Benchmarking list/iterate/linkedlist/1000: Analyzing
list/iterate/linkedlist/1000
                        time:   [1.1086 µs 1.1122 µs 1.1166 µs]
                        change: [−0.1925% +0.2230% +0.6489%] (p = 0.31 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking list/iterate/linkedlist/10000
Benchmarking list/iterate/linkedlist/10000: Warming up for 3.0000 s
Benchmarking list/iterate/linkedlist/10000: Collecting 100 samples in estimated 5.0068 s (470k iterations)
Benchmarking list/iterate/linkedlist/10000: Analyzing
list/iterate/linkedlist/10000
                        time:   [10.631 µs 10.675 µs 10.731 µs]
                        change: [−0.1697% +0.0567% +0.2709%] (p = 0.66 > 0.05)
                        No change in performance detected.
Found 25 outliers among 100 measurements (25.00%)
  5 (5.00%) low severe
  2 (2.00%) low mild
  6 (6.00%) high mild
  12 (12.00%) high severe

Benchmarking algo/dijkstra_dense/petgraph_binaryheap/100
Benchmarking algo/dijkstra_dense/petgraph_binaryheap/100: Warming up for 3.0000 s
Benchmarking algo/dijkstra_dense/petgraph_binaryheap/100: Collecting 100 samples in estimated 5.0554 s (217k iterations)
Benchmarking algo/dijkstra_dense/petgraph_binaryheap/100: Analyzing
algo/dijkstra_dense/petgraph_binaryheap/100
                        time:   [23.276 µs 23.369 µs 23.502 µs]
Found 7 outliers among 100 measurements (7.00%)
  3 (3.00%) high mild
  4 (4.00%) high severe
Benchmarking algo/dijkstra_dense/pie_core_fibheap/100
Benchmarking algo/dijkstra_dense/pie_core_fibheap/100: Warming up for 3.0000 s
Benchmarking algo/dijkstra_dense/pie_core_fibheap/100: Collecting 100 samples in estimated 5.0966 s (182k iterations)
Benchmarking algo/dijkstra_dense/pie_core_fibheap/100: Analyzing
algo/dijkstra_dense/pie_core_fibheap/100
                        time:   [27.963 µs 28.008 µs 28.057 µs]
Benchmarking algo/dijkstra_dense/petgraph_binaryheap/1000
Benchmarking algo/dijkstra_dense/petgraph_binaryheap/1000: Warming up for 3.0000 s
Benchmarking algo/dijkstra_dense/petgraph_binaryheap/1000: Collecting 100 samples in estimated 5.4000 s (10k iterations)
Benchmarking algo/dijkstra_dense/petgraph_binaryheap/1000: Analyzing
algo/dijkstra_dense/petgraph_binaryheap/1000
                        time:   [530.02 µs 530.89 µs 531.88 µs]
Found 8 outliers among 100 measurements (8.00%)
  7 (7.00%) high mild
  1 (1.00%) high severe
Benchmarking algo/dijkstra_dense/pie_core_fibheap/1000
Benchmarking algo/dijkstra_dense/pie_core_fibheap/1000: Warming up for 3.0000 s
Benchmarking algo/dijkstra_dense/pie_core_fibheap/1000: Collecting 100 samples in estimated 5.9711 s (10k iterations)
Benchmarking algo/dijkstra_dense/pie_core_fibheap/1000: Analyzing
algo/dijkstra_dense/pie_core_fibheap/1000
                        time:   [589.48 µs 590.54 µs 591.69 µs]
Found 18 outliers among 100 measurements (18.00%)
  1 (1.00%) low mild
  10 (10.00%) high mild
  7 (7.00%) high severe

Benchmarking algo/dijkstra_sparse/petgraph_binaryheap
Benchmarking algo/dijkstra_sparse/petgraph_binaryheap: Warming up for 3.0000 s
Benchmarking algo/dijkstra_sparse/petgraph_binaryheap: Collecting 100 samples in estimated 5.1703 s (10k iterations)
Benchmarking algo/dijkstra_sparse/petgraph_binaryheap: Analyzing
algo/dijkstra_sparse/petgraph_binaryheap
                        time:   [514.04 µs 515.49 µs 516.90 µs]
                        change: [+1.9049% +2.3027% +2.6593%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking algo/dijkstra_sparse/pie_core_fibheap
Benchmarking algo/dijkstra_sparse/pie_core_fibheap: Warming up for 3.0000 s
Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 10.0s, enable flat sampling, or reduce sample count to 40.

Benchmarking algo/dijkstra_sparse/pie_core_fibheap: Collecting 100 samples in estimated 9.9814 s (5050 iterations)
Benchmarking algo/dijkstra_sparse/pie_core_fibheap: Analyzing
algo/dijkstra_sparse/pie_core_fibheap
                        time:   [1.9645 ms 1.9697 ms 1.9768 ms]
                        change: [−0.1542% +0.2341% +0.6393%] (p = 0.25 > 0.05)
                        No change in performance detected.
Found 19 outliers among 100 measurements (19.00%)
  2 (2.00%) low severe
  5 (5.00%) high mild
  12 (12.00%) high severe


# Benchmark Results (new)


## OTHER


  algo_dijkstra_dense
+--------------------------+---------+--------+
| Impl                     | Time    | Rel    |
+=============================================+
| petgraph_binaryheap      | 20.1µs  | 1.00x  |
|--------------------------+---------+--------|
| petgraph_binaryheap_100  | 23.4µs  | 1.16x  |
|--------------------------+---------+--------|
| petgraph_binaryheap_1000 | 532.1µs | 26.43x |
|--------------------------+---------+--------|
| pie_core_fibheap         | 27.2µs  | 1.35x  |
|--------------------------+---------+--------|
| pie_core_fibheap_100     | 28.1µs  | 1.40x  |
|--------------------------+---------+--------|
| pie_core_fibheap_1000    | 590.4µs | 29.32x |
+--------------------------+---------+--------+

  algo_dijkstra_sparse
+---------------------+---------+-------+
| Impl                | Time    | Rel   |
+=======================================+
| petgraph_binaryheap | 515.9µs | 1.00x |
|---------------------+---------+-------|
| pie_core_fibheap    | 2.0ms   | 3.81x |
+---------------------+---------+-------+

  heap_decrease_key
+-----------------+---------+-------+
| Impl            | Time    | Rel   |
+===================================+
| binaryheap_lazy | 460.2ns | 1.00x |
|-----------------+---------+-------|
| piefibheap      | 840.3ns | 1.83x |
|-----------------+---------+-------|
| priorityqueue   | 1.5µs   | 3.16x |
+-----------------+---------+-------+

  heap_drain
+------------+---------+--------+
| Impl       | Time    | Rel    |
+===============================+
| binaryheap | 827.4ns | 1.00x  |
|------------+---------+--------|
| extfibheap | 20.7µs  | 24.97x |
|------------+---------+--------|
| piefibheap | 8.8µs   | 10.68x |
+------------+---------+--------+

  heap_mixed_workload
+-----------------+--------+-------+
| Impl            | Time   | Rel   |
+==================================+
| binaryheap_lazy | 3.0µs  | 1.00x |
|-----------------+--------+-------|
| piefibheap      | 10.4µs | 3.50x |
|-----------------+--------+-------|
| priorityqueue   | 5.0µs  | 1.70x |
+-----------------+--------+-------+

  heap_peek
+---------------+-------+--------+
| Impl          | Time  | Rel    |
+================================+
| binaryheap    | 0.2ns | 1.00x  |
|---------------+-------+--------|
| extfibheap    | 3.9ns | 17.92x |
|---------------+-------+--------|
| piefibheap    | 3.9ns | 17.88x |
|---------------+-------+--------|
| priorityqueue | 4.1ns | 18.95x |
+---------------+-------+--------+

  heap_pop
+---------------+--------+--------+
| Impl          | Time   | Rel    |
+=================================+
| binaryheap    | 1.6µs  | 1.00x  |
|---------------+--------+--------|
| extfibheap    | 21.3µs | 13.51x |
|---------------+--------+--------|
| piefibheap    | 9.6µs  | 6.10x  |
|---------------+--------+--------|
| priorityqueue | 2.6µs  | 1.64x  |
+---------------+--------+--------+

  heap_push
+---------------+---------+--------+
| Impl          | Time    | Rel    |
+==================================+
| binaryheap    | 313.3ns | 1.00x  |
|---------------+---------+--------|
| extfibheap    | 5.7µs   | 18.10x |
|---------------+---------+--------|
| piefibheap    | 1.3µs   | 4.10x  |
|---------------+---------+--------|
| priorityqueue | 2.3µs   | 7.42x  |
+---------------+---------+--------+

  heap_push_pop
+---------------+--------+--------+
| Impl          | Time   | Rel    |
+=================================+
| binaryheap    | 1.8µs  | 1.00x  |
|---------------+--------+--------|
| extfibheap    | 20.3µs | 11.33x |
|---------------+--------+--------|
| piefibheap    | 9.0µs  | 5.06x  |
|---------------+--------+--------|
| priorityqueue | 4.5µs  | 2.50x  |
+---------------+--------+--------+

  list_append
+-----------+---------+-------+
| Impl      | Time    | Rel   |
+=============================+
| indexlist | 487.6ns | 2.73x |
|-----------+---------+-------|
| pielist   | 332.2ns | 1.86x |
|-----------+---------+-------|
| vec       | 188.8ns | 1.06x |
|-----------+---------+-------|
| vecdeque  | 178.8ns | 1.00x |
+-----------+---------+-------+

  list_cursor_traverse
+--------------------+---------+-------+
| Impl               | Time    | Rel   |
+======================================+
| pielist_cursor     | 238.6ns | 1.58x |
|--------------------+---------+-------|
| pielist_cursor_mut | 231.5ns | 1.53x |
|--------------------+---------+-------|
| pielist_iter       | 150.9ns | 1.00x |
+--------------------+---------+-------+

  list_drain
+----------+---------+-------+
| Impl     | Time    | Rel   |
+============================+
| pielist  | 287.4ns | 9.49x |
|----------+---------+-------|
| vec      | 30.3ns  | 1.00x |
|----------+---------+-------|
| vecdeque | 61.1ns  | 2.02x |
+----------+---------+-------+

  list_iterate
+------------+---------+--------+
| Impl       | Time    | Rel    |
+===============================+
| indexlist  | 109.1ns | 18.15x |
|------------+---------+--------|
| linkedlist | 76.6ns  | 12.75x |
|------------+---------+--------|
| pielist    | 150.4ns | 25.02x |
|------------+---------+--------|
| vec        | 8.7ns   | 1.44x  |
|------------+---------+--------|
| vecdeque   | 6.0ns   | 1.00x  |
+------------+---------+--------+

  list_mid_modify
+------------+---------+--------+
| Impl       | Time    | Rel    |
+===============================+
| indexlist  | 99.0ns  | 1.36x  |
|------------+---------+--------|
| linkedlist | 1.8µs   | 24.49x |
|------------+---------+--------|
| pielist    | 138.2ns | 1.90x  |
|------------+---------+--------|
| vec        | 72.6ns  | 1.00x  |
|------------+---------+--------|
| vecdeque   | 77.2ns  | 1.06x  |
+------------+---------+--------+

  list_multi_insert
+---------+---------+--------+
| Impl    | Time    | Rel    |
+============================+
| pielist | 3.3µs   | 1.04x  |
|---------+---------+--------|
| vec     | 100.0µs | 31.76x |
+---------+---------+--------+

  list_pop_back
+----------+---------+--------+
| Impl     | Time    | Rel    |
+=============================+
| pielist  | 526.3ns | 34.32x |
|----------+---------+--------|
| vec      | 15.3ns  | 1.00x  |
|----------+---------+--------|
| vecdeque | 15.4ns  | 1.01x  |
+----------+---------+--------+

  list_pop_front
+----------+---------+--------+
| Impl     | Time    | Rel    |
+=============================+
| pielist  | 555.6ns | 35.10x |
|----------+---------+--------|
| vec      | 642.0ns | 40.55x |
|----------+---------+--------|
| vecdeque | 15.8ns  | 1.00x  |
+----------+---------+--------+

  list_prepend
+-----------+---------+-------+
| Impl      | Time    | Rel   |
+=============================+
| indexlist | 504.0ns | 2.38x |
|-----------+---------+-------|
| pielist   | 494.7ns | 2.33x |
|-----------+---------+-------|
| vec       | 779.8ns | 3.68x |
|-----------+---------+-------|
| vecdeque  | 212.0ns | 1.00x |
+-----------+---------+-------+

  list_random_access
+-----------+--------+---------+
| Impl      | Time   | Rel     |
+==============================+
| indexlist | 5.2µs  | 192.41x |
|-----------+--------+---------|
| pielist   | 6.4µs  | 237.81x |
|-----------+--------+---------|
| vec       | 27.4ns | 1.01x   |
|-----------+--------+---------|
| vecdeque  | 45.4ns | 1.67x   |
+-----------+--------+---------+

  list_retain
+----------+---------+--------+
| Impl     | Time    | Rel    |
+=============================+
| pielist  | 488.1ns | 11.63x |
|----------+---------+--------|
| vec      | 42.0ns  | 1.00x  |
|----------+---------+--------|
| vecdeque | 96.8ns  | 2.31x  |
+----------+---------+--------+

  list_sort
+---------+---------+-------+
| Impl    | Time    | Rel   |
+===========================+
| pielist | 2.8µs   | 7.89x |
|---------+---------+-------|
| vec     | 352.7ns | 1.00x |
+---------+---------+-------+

  list_splice
+---------+--------+---------+
| Impl    | Time   | Rel     |
+============================+
| pielist | 80.8µs | 130.48x |
|---------+--------+---------|
| vec     | 84.4µs | 136.29x |
+---------+--------+---------+

  list_splice_front
+---------+--------+----------+
| Impl    | Time   | Rel      |
+=============================+
| pielist | 67.1ns | 1.85x    |
|---------+--------+----------|
| vec     | 95.1µs | 2621.92x |
+---------+--------+----------+

  list_split
+---------+---------+--------+
| Impl    | Time    | Rel    |
+============================+
| pielist | 303.1ns | 19.56x |
|---------+---------+--------|
| vec     | 15.5ns  | 1.00x  |
+---------+---------+--------+

  pool_shared_lists
+----------------+--------+-------+
| Impl           | Time   | Rel   |
+=================================+
| pielist_shared | 43.9µs | 7.27x |
|----------------+--------+-------|
| vec_separate   | 7.9µs  | 1.30x |
+----------------+--------+-------+

  pool_shrink_to_fit
+---------+---------+-------+
| Impl    | Time    | Rel   |
+===========================+
| pielist | 553.9ns | 1.00x |
+---------+---------+-------+