| 77 | BENCHMARK(BM_VariableSetRange); |
| 78 | |
| 79 | static void BM_VariableAddRange(benchmark::State& state) { |
| 80 | BM_VariableOp(state, [](auto& v, auto, auto val) { v.AddRange(1, max_vars, val); }); |
| 81 | } |
| 82 | |
| 83 | BENCHMARK(BM_VariableAddRange); |
| 84 |
nothing calls this directly
no test coverage detected