| 278 | } |
| 279 | |
| 280 | void BM_SetsEquivalentTrue(benchmark::State& state) { |
| 281 | ListImpl impl = FromNumber(state.range(0)); |
| 282 | int size = state.range(1); |
| 283 | |
| 284 | RunBenchmark({"sets.equivalent_true", "sets.equivalent(x, y)", impl, size, |
| 285 | CelValue::CreateBool(true)}, |
| 286 | state); |
| 287 | } |
| 288 | |
| 289 | void BM_SetsEquivalentFalse(benchmark::State& state) { |
| 290 | ListImpl impl = FromNumber(state.range(0)); |
nothing calls this directly
no test coverage detected