| 83 | BENCHMARK(BM_VariableAddRange); |
| 84 | |
| 85 | static void BM_VariableSubRange(benchmark::State& state) { |
| 86 | BM_VariableOp(state, [](auto& v, auto, auto val) { v.SubRange(1, max_vars, val); }); |
| 87 | } |
| 88 | |
| 89 | BENCHMARK(BM_VariableSubRange); |
| 90 |
nothing calls this directly
no test coverage detected