| 451 | |
| 452 | template <typename E, typename T, std::size_t N, std::size_t... I> |
| 453 | constexpr array<E, std::remove_cv_t<T>> to_array_impl(T (&a)[N], std::index_sequence<I...>) { |
| 454 | return {{a[I]...}}; |
| 455 | } |
| 456 | |
| 457 | template <typename E, typename T, std::size_t N, std::size_t... I> |
| 458 | constexpr array<E, std::remove_cv_t<T>> to_array_impl(T(&&a)[N], std::index_sequence<I...>) { |
nothing calls this directly
no outgoing calls
no test coverage detected