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

A type that satisfies std::is_trivially_copyable_v<t>. More...

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

Concept definition

template<typename t>
concept bio::meta::trivially_copyable = std::copyable<t> && std::is_trivially_copyable_v<t>
A type that satisfies std::is_trivially_copyable_v<t>.
Definition: core_language.hpp:103

Detailed Description