Daily bit(e) of C++ | Implementing custom concepts
Daily bit(e) of C++ #312, Implementing custom concepts in C++20.
One way to implement custom concepts is to combine existing ones using logical AND and OR.
However, for fully custom concepts, we might need to implement custom atomic constraints using simple, type, compound and nested requirements.