#include <stddef.h>
#include <array>
#include <iterator>
#include <type_traits>
#include "v8config.h"
Go to the source code of this file.
|
template<class T , std::size_t N, std::size_t... I> |
constexpr std::array< std::remove_cv_t< T >, N > | to_array_lvalue_impl (T(&a)[N], std::index_sequence< I... >) |
|
template<class T , std::size_t N, std::size_t... I> |
constexpr std::array< std::remove_cv_t< T >, N > | to_array_rvalue_impl (T(&&a)[N], std::index_sequence< I... >) |
|
template<class T , std::size_t N> |
constexpr std::array< std::remove_cv_t< T >, N > | to_array (T(&a)[N]) |
|
template<class T , std::size_t N> |
constexpr std::array< std::remove_cv_t< T >, N > | to_array (T(&&a)[N]) |
|