BioC++ core-0.7.0
The Modern C++ libraries for Bioinformatics.
 
Loading...
Searching...
No Matches
bio::meta::constexpr_default_initializable Concept Reference

A type that is std::default_initializable<t> at compile-time. More...

#include <bio/meta/concept/core_language.hpp>

Concept definition

template<typename t>
concept bio::meta::constexpr_default_initializable = std::default_initializable<t> && BIOCPP_IS_CONSTEXPR(t{})
A type that is std::default_initializable<t> at compile-time.
Definition: core_language.hpp:143
#define BIOCPP_IS_CONSTEXPR(...)
Returns true if the expression passed to this macro can be evaluated at compile time,...
Definition: core.hpp:182

Detailed Description

A type that is std::default_initializable<t> at compile-time.