MCPcopy Index your code
hub / github.com/SingleRust/SingleRust / combine_filters

Function combine_filters

src/memory/processing/filtering/mod.rs:271–277  ·  view source on GitHub ↗
(filter1: &[bool], filter2: &[bool])

Source from the content-addressed store, hash-verified

269}
270
271fn 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}

Callers 2

mark_filter_cellsFunction · 0.85
mark_filter_genesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected