| 4577 | // And see https://github.com/nlohmann/json/pull/1391 |
| 4578 | template<std::size_t N, typename IteratorType, enable_if_t<N == 0, int> = 0> |
| 4579 | auto get(const nlohmann::detail::iteration_proxy_value<IteratorType>& i) -> decltype(i.key()) |
| 4580 | { |
| 4581 | return i.key(); |
| 4582 | } |
| 4583 | // Structured Bindings Support |
| 4584 | // For further reference see https://blog.tartanllama.xyz/structured-bindings/ |
| 4585 | // And see https://github.com/nlohmann/json/pull/1391 |
no test coverage detected