MCPcopy Create free account
hub / github.com/PerroEngine/Perro / compare_bool

Function compare_bool

perro_source/core/perro_csv/src/lib.rs:867–873  ·  view source on GitHub ↗
(equal: bool, op: CsvCompare)

Source from the content-addressed store, hash-verified

865 }
866 let next = self.predicate_matches(row_idx, &filter.predicate);
867 matched = match filter.logic {
868 CsvLogic::And => matched && next,
869 CsvLogic::Or => matched || next,
870 };
871 }
872 matched
873 }
874
875 fn predicate_matches(&self, row_idx: usize, predicate: &CsvPredicate) -> bool {
876 match predicate {

Callers 1

predicate_matchesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected