| 74 | } |
| 75 | |
| 76 | static void TrieLookupFound(benchmark::State& state) { // NOLINT non-const reference |
| 77 | BenchmarkTrieLookups(state, {"N/A", "null", "-1.#IND", "N/A"}); |
| 78 | } |
| 79 | |
| 80 | static void TrieLookupNotFound(benchmark::State& state) { // NOLINT non-const reference |
| 81 | BenchmarkTrieLookups(state, {"None", "1.0", "", "abc"}); |
nothing calls this directly
no test coverage detected