| 89 | BENCHMARK(BM_VariableSubRange); |
| 90 | |
| 91 | static void BM_VariableMultRange(benchmark::State& state) { |
| 92 | BM_VariableOp(state, [](auto& v, auto, auto val) { v.MultRange(1, max_vars, val); }); |
| 93 | } |
| 94 | |
| 95 | BENCHMARK(BM_VariableMultRange); |
| 96 |
nothing calls this directly
no test coverage detected