| 3954 | // And see https://github.com/nlohmann/json/pull/1391 |
| 3955 | template<std::size_t N, typename IteratorType, enable_if_t<N == 0, int> = 0> |
| 3956 | auto get(const nlohmann::detail::iteration_proxy_value<IteratorType>& i) -> decltype(i.key()) |
| 3957 | { |
| 3958 | return i.key(); |
| 3959 | } |
| 3960 | // Structured Bindings Support |
| 3961 | // For further reference see https://blog.tartanllama.xyz/structured-bindings/ |
| 3962 | // And see https://github.com/nlohmann/json/pull/1391 |
no test coverage detected