aboutsummaryrefslogtreecommitdiff
path: root/src/external_trait_impls/rayon/helpers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/external_trait_impls/rayon/helpers.rs')
-rw-r--r--src/external_trait_impls/rayon/helpers.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/external_trait_impls/rayon/helpers.rs b/src/external_trait_impls/rayon/helpers.rs
index 9382007..070b08c 100644
--- a/src/external_trait_impls/rayon/helpers.rs
+++ b/src/external_trait_impls/rayon/helpers.rs
@@ -4,6 +4,7 @@ use alloc::vec::Vec;
use rayon::iter::{IntoParallelIterator, ParallelIterator};
/// Helper for collecting parallel iterators to an intermediary
+#[allow(clippy::linkedlist)] // yes, we need linked list here for efficient appending!
pub(super) fn collect<I: IntoParallelIterator>(iter: I) -> (LinkedList<Vec<I::Item>>, usize) {
let list = iter
.into_par_iter()