| 131 | using WordType = uint64_t; |
| 132 | |
| 133 | explicit SSE42Filter(const ParseOptions& options) : filter_(MakeFilter(options)) {} |
| 134 | |
| 135 | bool Matches(WordType w) const { |
| 136 | // Look up every byte in `w` in the SIMD filter. |
nothing calls this directly
no test coverage detected