| 473 | |
| 474 | template <typename E, typename... Ts> |
| 475 | constexpr std::enable_if_t<(enum_count<E>() == sizeof...(Ts)), array<E, std::remove_cv_t<std::common_type_t<Ts...>>>> make_array(Ts&&... ts) { |
| 476 | return {{std::forward<Ts>(ts)...}}; |
| 477 | } |
| 478 | |
| 479 | inline constexpr detail::raw_access_t raw_access{}; |
| 480 |
nothing calls this directly
no outgoing calls
no test coverage detected