Home
last modified time | relevance | path

Searched refs:FromParallelIterator (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/rayon/src/iter/
Dfrom_par_iter.rs2 use super::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
22 impl<T> FromParallelIterator<T> for Vec<T>
35 impl<T> FromParallelIterator<T> for VecDeque<T>
49 impl<T> FromParallelIterator<T> for BinaryHeap<T>
63 impl<T> FromParallelIterator<T> for LinkedList<T>
79 impl<K, V, S> FromParallelIterator<(K, V)> for HashMap<K, V, S>
97 impl<K, V> FromParallelIterator<(K, V)> for BTreeMap<K, V>
111 impl<V, S> FromParallelIterator<V> for HashSet<V, S>
125 impl<V> FromParallelIterator<V> for BTreeSet<V>
138 impl FromParallelIterator<char> for String {
[all …]
Dunzip.rs466 impl<A, B, FromA, FromB> FromParallelIterator<(A, B)> for (FromA, FromB) impl
470 FromA: Send + FromParallelIterator<A>,
471 FromB: Send + FromParallelIterator<B>,
482 impl<L, R, A, B> FromParallelIterator<Either<L, R>> for (A, B) impl
486 A: Send + FromParallelIterator<L>,
487 B: Send + FromParallelIterator<R>,
516 FromT: Send + FromParallelIterator<T>,
Dmod.rs2044 C: FromParallelIterator<Self::Item>, in collect()
2950 pub trait FromParallelIterator<T> trait
/external/rust/crates/rayon/src/
Dresult.rs93 impl<C, T, E> FromParallelIterator<Result<T, E>> for Result<C, E> impl
95 C: FromParallelIterator<T>,
Doption.rs173 impl<C, T> FromParallelIterator<Option<T>> for Option<C> impl
175 C: FromParallelIterator<T>,
Dprelude.rs5 pub use crate::iter::FromParallelIterator;
/external/rust/crates/rayon/
DRELEASES.md7 - New implementations of `FromParallelIterator` make it possible to `collect`
9 - `FromParallelIterator<(A, B)> for (FromA, FromB)` works like `unzip`.
10 - `FromParallelIterator<Either<L, R>> for (A, B)` works like `partition_map`.
12 - The implementation of `FromParallelIterator` and `ParallelExtend` for
307 - `String` now implements `FromParallelIterator<Cow<str>>` and
309 - `()` now implements `FromParallelIterator<()>`, inspired by `std`.
473 - Support `FromParallelIterator` for `Cow`.
/external/rust/crates/hashbrown/src/external_trait_impls/rayon/
Dset.rs8 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
329 impl<T, S> FromParallelIterator<T> for HashSet<T, S, Global>
Dmap.rs10 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
405 impl<K, V, S> FromParallelIterator<(K, V)> for HashMap<K, V, S, Global>