| 5340 | // And see https://github.com/nlohmann/json/pull/1391 |
| 5341 | template<std::size_t N, typename IteratorType, enable_if_t<N == 0, int> = 0> |
| 5342 | auto get(const nlohmann::detail::iteration_proxy_value<IteratorType>& i) -> decltype(i.key()) |
| 5343 | { |
| 5344 | return i.key(); |
| 5345 | } |
| 5346 | // Structured Bindings Support |
| 5347 | // For further reference see https://blog.tartanllama.xyz/structured-bindings/ |
| 5348 | // And see https://github.com/nlohmann/json/pull/1391 |
no test coverage detected