Closed Ogeon closed 9 months ago
Attention: Patch coverage is 96.56250%
with 22 lines
in your changes are missing coverage. Please review.
Project coverage is 81.82%. Comparing base (
7e446ea
) to head (ce86a27
). Report is 4 commits behind head on master.
Files | Patch % | Lines |
---|---|---|
palette/src/macros/struct_of_arrays.rs | 96.39% | 21 Missing and 1 partial :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
:warning: No base runs were found
Falling back to comparing issue_283_into_iterator
(ce86a27) with master
(25ca8af)
❌ 1 (👁 1)
regressions
✅ 44
untouched benchmarks
:warning: _Please fix the performance issues or acknowledge them on CodSpeed._
Benchmark | master |
issue_283_into_iterator |
Change | |
---|---|---|---|---|
👁 | matrix_inverse |
215.6 ns | 271.1 ns | -20.49% |
A workaround for another case of #283. This time for
IntoIterator
. It avoids the issue by only providing implementations for specific collection types.Closed Issues
Breaking Change
This makes
IntoIterator
no longer generic over the collection type, but explicitly covers[T; N]
,&[T]
,&mut [T]
,Vec<T>
, andBox<[T]>
.