common/src/utils.rs

4 lines
102 B
Rust
Raw Normal View History

2022-07-17 18:19:36 +00:00
pub fn vec_has_error<T, E>(target: &[Result<T, E>]) -> bool {
target.iter().any(|t| t.is_err())
}