MySQL 9.6.0
Source Code Documentation
mysql::sets::Is_interval_set_implementation Concept Reference

Helper concept to identify if a class can be the implementation for Interval_set_interface. More...

#include <interval_set_interface.h>

Concept definition

template<class Test>
concept mysql::sets::Is_interval_set_implementation = requires(Test t, const Test ct) {
{
t.boundaries()
} -> Is_boundary_set_ref;
{
ct.boundaries()
} -> Is_boundary_set_ref;
}
Helper concept to identify if a class can be the implementation for Interval_set_interface.
Definition: interval_set_interface.h:63

Detailed Description

Helper concept to identify if a class can be the implementation for Interval_set_interface.