| 251 | } |
| 252 | |
| 253 | void BM_SetsIntersectsFalse(benchmark::State& state) { |
| 254 | ListImpl impl = FromNumber(state.range(0)); |
| 255 | int size = state.range(1); |
| 256 | |
| 257 | RunBenchmark({"sets.intersects_false", "sets.intersects(x, y)", impl, size, |
| 258 | CelValue::CreateBool(false)}, |
| 259 | state); |
| 260 | } |
| 261 | |
| 262 | void BM_SetsIntersectsComprehensionTrue(benchmark::State& state) { |
| 263 | ListImpl impl = FromNumber(state.range(0)); |
nothing calls this directly
no test coverage detected