(filter1: &[bool], filter2: &[bool])
| 269 | } |
| 270 | |
| 271 | fn combine_filters(filter1: &[bool], filter2: &[bool]) -> Vec<bool> { |
| 272 | filter1 |
| 273 | .iter() |
| 274 | .zip(filter2.iter()) |
| 275 | .map(|(&x, &y)| x && y) |
| 276 | .collect() |
| 277 | } |
no outgoing calls
no test coverage detected