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

#include <nested_set_meta.h>

Concept definition

template<class Test>
requires(Test t, Test ct, typename Test::Key_t k, typename Test::Mapped_t m,
t.clear();
t.assign(t);
t.inplace_union(t);
t.inplace_union(k, m);
t.inplace_intersect(t);
t.inplace_intersect(k, m);
t.inplace_intersect(k);
t.inplace_subtract(t);
t.inplace_subtract(k, m);
t.inplace_subtract(k);
t.inplace_subtract(it, k);
}
Definition: nested_set_meta.h:172
True if Test is a nested set.
Definition: nested_set_meta.h:110
True if Test is a Nested Set Storage.
Definition: nested_set_meta.h:154
std::remove_cvref_t< decltype(std::declval< Range_t >().begin())> Range_iterator_type
Gives the iterator type, deduced from the begin() member.
Definition: meta.h:42