summaryrefslogtreecommitdiffstats
path: root/tokio/src/stream/mod.rs
diff options
context:
space:
mode:
authorTore Pettersen <toreskog@live.com>2020-02-02 20:36:41 +0100
committerGitHub <noreply@github.com>2020-02-02 11:36:41 -0800
commit513671f8dece002191feb4f2b1a97bd66306350c (patch)
treeee64583a3d0dc2b48d4e440fe7bf0de11cad216b /tokio/src/stream/mod.rs
parent79e4514283f08dfbf14efede84582b4c665c2aea (diff)
stream: add StreamExt::skip_while (#2205)
async version of Iterator::skip_while Refs: #2104
Diffstat (limited to 'tokio/src/stream/mod.rs')
-rw-r--r--tokio/src/stream/mod.rs34
1 files changed, 34 insertions, 0 deletions
diff --git a/tokio/src/stream/mod.rs b/tokio/src/stream/mod.rs
index 2ee278bf..307ead5f 100644
--- a/tokio/src/stream/mod.rs
+++ b/tokio/src/stream/mod.rs
@@ -56,6 +56,9 @@ pub use stream_map::StreamMap;
mod skip;
use skip::Skip;
+mod skip_while;
+use skip_while::SkipWhile;
+
mod try_next;
use try_next::TryNext;
@@ -479,6 +482,37 @@ pub trait StreamExt: Stream {
Skip::new(self, n)
}
+ /// Skip elements from the underlying stream while the provided predicate
+ /// resolves to `true`.
+ ///
+ /// This function, like [`Iterator::skip_while`], will ignore elemets from the
+ /// stream until the predicate `f` resolves to `false`. Once one element
+ /// returns false, the rest of the elements will be yielded.
+ ///
+ /// [`Iterator::skip_while`]: std::iter::Iterator::skip_while()
+ ///
+ /// # Examples
+ ///
+ /// ```
+ /// # #[tokio::main]
+ /// # async fn main() {
+ /// use tokio::stream::{self, StreamExt};
+ /// let mut stream = stream::iter(vec![1,2,3,4,1]).skip_while(|x| *x < 3);
+ ///
+ /// assert_eq!(Some(3), stream.next().await);
+ /// assert_eq!(Some(4), stream.next().await);
+ /// assert_eq!(Some(1), stream.next().await);
+ /// assert_eq!(None, stream.next().await);
+ /// # }
+ /// ```
+ fn skip_while<F>(self, f: F) -> SkipWhile<Self, F>
+ where
+ F: FnMut(&Self::Item) -> bool,
+ Self: Sized,
+ {
+ SkipWhile::new(self, f)
+ }
+
/// Tests if every element of the stream matches a predicate.
///
/// `all()` takes a closure that returns `true` or `false`. It applies