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