| 4021 | // And see https://github.com/nlohmann/json/pull/1391 |
| 4022 | template<std::size_t N, typename IteratorType, enable_if_t<N == 0, int> = 0> |
| 4023 | auto get(const nlohmann::detail::iteration_proxy_value<IteratorType>& i) -> decltype(i.key()) |
| 4024 | { |
| 4025 | return i.key(); |
| 4026 | } |
| 4027 | // Structured Bindings Support |
| 4028 | // For further reference see https://blog.tartanllama.xyz/structured-bindings/ |
| 4029 | // And see https://github.com/nlohmann/json/pull/1391 |