pub async fn map_bounded_ok<T, R, F, Fut>(
items: Vec<T>,
limit: usize,
work: F,
) -> Vec<R>Expand description
Convenience: map and unwrap join panics via resume_unwind.
Prefer map_bounded / map_bounded_with when partial failure must be reported.