usesuper::plumbing::*; usesuper::*; use std::fmt; use std::sync::atomic::{AtomicBool, Ordering};
/// `SkipAnyWhile` is an iterator that skips over elements from anywhere in `I` /// until the callback returns `false`. /// This struct is created by the [`skip_any_while()`] method on [`ParallelIterator`] /// /// [`skip_any_while()`]: trait.ParallelIterator.html#method.skip_any_while /// [`ParallelIterator`]: trait.ParallelIterator.html #[must_use = "iterator adaptors are lazy and do nothing unless consumed"] #[derive(Clone)] pubstruct SkipAnyWhile<I: ParallelIterator, P> {
base: I,
predicate: P,
}
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.