basedOpinionated utility library |
git clone git://git.dimitrijedobrota.com/based.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |
semiregular.hpp (262B)
0 #pragma once
2 #include <concepts>
4 #include "based/trait/remove/cvref.hpp"
6 namespace based
7 {
9 template<typename T>
10 concept Semiregular = std::semiregular<T>;
12 template<typename T>
13 concept BareSemiregular = Semiregular<remove_cvref_t<T>>;
15 } // namespace based