more_concepts icon indicating copy to clipboard operation
more_concepts copied to clipboard

A C++20 concepts library, providing container concepts etc.

Results 1 more_concepts issues
Sort by recently updated
recently updated
newest added

base_concepts line 51 fails to compile with "unexpanded parameter pack": ``` requires(Signatures& ... signatures) { ([] (auto(&)(Args...) -> Ret) requires std::is_invocable_r_v {}(signatures), ...); }; ``` It should be this (like...