cmoon::has_size


Defined in module <cmoon.concepts>


template<class T>
concept has_size = 
    requires(T t)
{
    std::size(t);
};


(1)

The concept has_size<T> is satisfied if and only if std::size(t) is valid, with t being of type T.