| 5273 | // And see https://github.com/nlohmann/json/pull/1391 |
| 5274 | template<std::size_t N, typename IteratorType, enable_if_t<N == 0, int> = 0> |
| 5275 | auto get(const nlohmann::detail::iteration_proxy_value<IteratorType>& i) -> decltype(i.key()) |
| 5276 | { |
| 5277 | return i.key(); |
| 5278 | } |
| 5279 | // Structured Bindings Support |
| 5280 | // For further reference see https://blog.tartanllama.xyz/structured-bindings/ |
| 5281 | // And see https://github.com/nlohmann/json/pull/1391 |
no test coverage detected