| 287 | } |
| 288 | |
| 289 | void BM_SetsEquivalentFalse(benchmark::State& state) { |
| 290 | ListImpl impl = FromNumber(state.range(0)); |
| 291 | int size = state.range(1); |
| 292 | |
| 293 | RunBenchmark({"sets.equivalent_false", "sets.equivalent(x, y)", impl, size, |
| 294 | CelValue::CreateBool(false)}, |
| 295 | state); |
| 296 | } |
| 297 | |
| 298 | void BM_SetsEquivalentComprehensionTrue(benchmark::State& state) { |
| 299 | ListImpl impl = FromNumber(state.range(0)); |
nothing calls this directly
no test coverage detected