| 1429 | |
| 1430 | template <typename F> |
| 1431 | auto for_each(F&& f) const |
| 1432 | -> decltype(HighsHashTableEntry<K, V>().forward(f)) { |
| 1433 | using R = decltype(for_each(f)); |
| 1434 | return for_each_recurse<R>(root, f); |
| 1435 | } |
| 1436 | |
| 1437 | HighsHashTree() = default; |
| 1438 |
no test coverage detected