6#ifndef TTG_SERIALIZATION_STD_ARRAY_H
7#define TTG_SERIALIZATION_STD_ARRAY_H
11#ifdef TTG_SERIALIZATION_SUPPORTS_MADNESS
15#ifdef TTG_SERIALIZATION_SUPPORTS_BOOST
16#include <boost/serialization/array.hpp>
19 template <
typename Archive,
typename T, std::
size_t N>
20 inline static constexpr bool is_stlcontainer_boost_serializable_v<Archive, std::array<T, N>> =
21 is_boost_serializable_v<Archive, T>;
22 template <
typename Archive,
typename T, std::
size_t N>
23 inline static constexpr bool is_stlcontainer_boost_serializable_v<Archive, const std::array<T, N>> =
24 is_boost_serializable_v<Archive, const T>;