cmoon::complete_type


Defined in module <cmoon.concepts>


template<class T>
concept complete_type = 
    requires
{
    sizeof(T);
};


(1)

The concept complete_type<T> is satisfied if and only if T has a known size (or not incomplete).