| 129 | |
| 130 | template <std::size_t N, const std::array<int, N> &arr, size_t... Is> |
| 131 | constexpr auto array_to_seq(const std::index_sequence<Is...> &) { |
| 132 | return std::integer_sequence<std::int64_t, arr[Is]...>(); |
| 133 | } |
| 134 | |
| 135 | // convert array to map |
| 136 | template <typename E, size_t N, size_t... Is> |
nothing calls this directly
no outgoing calls
no test coverage detected