Qx v0.5.7
Qt Extensions Library
Loading...
Searching...
No Matches
Qx::defines_post_increment_s Concept Reference

Specifies that a type defines a post-increment operator (with strict return). More...

Concept definition

template<class K>
concept Qx::defines_post_increment_s = requires(K klass) {{ klass++} -> std::same_as<K>;}
Specifies that a type defines a post-increment operator (with strict return).
Definition qx-concepts.h:179

Detailed Description

Satisfied if K has a post-increment operator defined that returns K.