| 242 | } |
| 243 | |
| 244 | void BM_SetsIntersectsTrue(benchmark::State& state) { |
| 245 | ListImpl impl = FromNumber(state.range(0)); |
| 246 | int size = state.range(1); |
| 247 | |
| 248 | RunBenchmark({"sets.intersects_true", "sets.intersects(x, y)", impl, size, |
| 249 | CelValue::CreateBool(true)}, |
| 250 | state); |
| 251 | } |
| 252 | |
| 253 | void BM_SetsIntersectsFalse(benchmark::State& state) { |
| 254 | ListImpl impl = FromNumber(state.range(0)); |
nothing calls this directly
no test coverage detected