//! This module contains the parallel iterator types for B-Tree maps //! (`BTreeMap<K, V>`). You will rarely need to interact with it directly //! unless you have need to name one of the iterator types.
use std::collections::BTreeMap;
usecrate::iter::plumbing::*; usecrate::iter::*;
usecrate::vec;
/// Parallel iterator over a B-Tree map #[derive(Debug)] // std doesn't Clone pubstruct IntoIter<K: Ord + Send, V: Send> {
inner: vec::IntoIter<(K, V)>,
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.