| 3652 | |
| 3653 | template<std::size_t I> |
| 3654 | auto |
| 3655 | get(key_value_pair const&) noexcept -> |
| 3656 | typename std::conditional<I == 0, |
| 3657 | string_view const, |
| 3658 | value const&>::type |
| 3659 | { |
| 3660 | static_assert(I == 0, |
| 3661 | "key_value_pair index out of range"); |
| 3662 | } |
| 3663 | |
| 3664 | template<std::size_t I> |
| 3665 | auto |
no outgoing calls
no test coverage detected