| 24874 | |
| 24875 | template <typename... Args, typename... Keys> |
| 24876 | decltype(auto) get(Keys&&... keys) const { |
| 24877 | return global.get<Args...>(std::forward<Keys>(keys)...); |
| 24878 | } |
| 24879 | |
| 24880 | template <typename T, typename Key> |
| 24881 | decltype(auto) get_or(Key&& key, T&& otherwise) const { |
no outgoing calls
no test coverage detected