#include <concepts.h>
template<typename T>
{ a.end() } -> container_iterator<T>;
{ a.cbegin() } -> container_iterator<T>;
{ a.cend() } -> container_iterator<T>;
{ a.size() } -> std::same_as<typename T::size_type>;
typename T::value_type;
}
Definition at line 160 of file concepts.h.