|
MADNESS 0.10.1
|
is std::true_type if T can be serialized to Archive without specialized serialize() method
More...
#include <type_traits.h>
Static Public Attributes | |
| static constexpr bool | value = is_default_serializable_helper<std::remove_cv_t<std::remove_reference_t<Archive>>,std::remove_cv_t<std::remove_reference_t<T>>>::value |
is std::true_type if T can be serialized to Archive without specialized serialize() method
For text stream-based Archive this is std::true_type if is_iostreammable<T>::value is true. For other Archive types this is std::true_type if is_trivially_serializable<T>::value is true.
| Archive | an Archive type |
| T | a type |
|
staticconstexpr |