10 template<
typename To,
typename From, std::size_t Size,
11 typename = std::enable_if_t<std::is_convertible_v<From, To>>>
13 std::array<To, Size> to {{}};
14 std::copy(std::begin(from), std::end(from), std::begin(to));
MBGL_CONSTEXPR std::array< To, Size > convert(const std::array< From, Size > &from)