pub fn exact_terms_match(query: &str, candidate: &str) -> boolExpand description
Returns true when every whitespace-separated term in query appears as a
case-insensitive substring within candidate. Both query and candidate
are expected to be pre-lowered (via normalize_query and construction-time
lowering respectively), so this function performs zero allocations.