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

Specifies that a type defines a right shift operator for another type (with strict return). More...

Concept definition

template<class K, typename T>
concept Qx::defines_right_shift_for_s = requires(K klass, T type) {{ klass >> type } -> std::same_as<K>;}
Specifies that a type defines a right shift operator for another type (with strict return).
Definition qx-concepts.h:399

Detailed Description

Satisfied if K has a right shift operator defined for T that returns K.