Commit f6f8aa5
committed
Don't panic in VecInner::extend and return a Result
Other methods for extending VecInner already return results instead of
panicking. In case of VecInner::extend, avoiding a panic by checking
that the actual amount of elements to extend with fits beforehand is not
generally possible.
So attempt to add the elements from the iterator and restore the
original length in case of an error.1 parent 45a1f11 commit f6f8aa5
3 files changed
+36
-12
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
586 | 586 | | |
587 | 587 | | |
588 | 588 | | |
589 | | - | |
| 589 | + | |
| 590 | + | |
| 591 | + | |
590 | 592 | | |
591 | 593 | | |
592 | 594 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
621 | 621 | | |
622 | 622 | | |
623 | 623 | | |
624 | | - | |
625 | | - | |
626 | | - | |
627 | | - | |
628 | | - | |
| 624 | + | |
629 | 625 | | |
630 | 626 | | |
631 | 627 | | |
632 | | - | |
633 | | - | |
634 | | - | |
| 628 | + | |
| 629 | + | |
| 630 | + | |
| 631 | + | |
| 632 | + | |
| 633 | + | |
| 634 | + | |
| 635 | + | |
| 636 | + | |
| 637 | + | |
| 638 | + | |
635 | 639 | | |
636 | 640 | | |
637 | 641 | | |
| |||
1404 | 1408 | | |
1405 | 1409 | | |
1406 | 1410 | | |
1407 | | - | |
| 1411 | + | |
1408 | 1412 | | |
1409 | 1413 | | |
1410 | 1414 | | |
| |||
1416 | 1420 | | |
1417 | 1421 | | |
1418 | 1422 | | |
1419 | | - | |
| 1423 | + | |
| 1424 | + | |
1420 | 1425 | | |
1421 | 1426 | | |
1422 | 1427 | | |
| |||
1808 | 1813 | | |
1809 | 1814 | | |
1810 | 1815 | | |
1811 | | - | |
| 1816 | + | |
1812 | 1817 | | |
1813 | 1818 | | |
1814 | 1819 | | |
| |||
2119 | 2124 | | |
2120 | 2125 | | |
2121 | 2126 | | |
| 2127 | + | |
| 2128 | + | |
| 2129 | + | |
| 2130 | + | |
| 2131 | + | |
| 2132 | + | |
| 2133 | + | |
| 2134 | + | |
| 2135 | + | |
| 2136 | + | |
| 2137 | + | |
| 2138 | + | |
| 2139 | + | |
| 2140 | + | |
| 2141 | + | |
| 2142 | + | |
2122 | 2143 | | |
2123 | 2144 | | |
2124 | 2145 | | |
| |||
0 commit comments