| 3410 | // And see https://github.com/nlohmann/json/pull/1391 |
| 3411 | template <std::size_t N, typename IteratorType, enable_if_t<N == 0, int> = 0> |
| 3412 | auto get(const nlohmann::detail::iteration_proxy_value<IteratorType>& i) -> decltype(i.key()) |
| 3413 | { |
| 3414 | return i.key(); |
| 3415 | } |
| 3416 | // Structured Bindings Support |
| 3417 | // For further reference see https://blog.tartanllama.xyz/structured-bindings/ |
| 3418 | // And see https://github.com/nlohmann/json/pull/1391 |
no test coverage detected