aboutsummaryrefslogtreecommitdiff
path: root/tests/debug.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/debug.rs')
-rw-r--r--tests/debug.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/debug.rs b/tests/debug.rs
index 1cbf4e6..14f3791 100644
--- a/tests/debug.rs
+++ b/tests/debug.rs
@@ -172,7 +172,11 @@ fn debug_adaptors() {
check(v.par_iter().positions(|_| true));
check(v.par_iter().rev());
check(v.par_iter().skip(1));
+ check(v.par_iter().skip_any(1));
+ check(v.par_iter().skip_any_while(|_| false));
check(v.par_iter().take(1));
+ check(v.par_iter().take_any(1));
+ check(v.par_iter().take_any_while(|_| true));
check(v.par_iter().map(Some).while_some());
check(v.par_iter().with_max_len(1));
check(v.par_iter().with_min_len(1));