MySQL 9.6.0
Source Code Documentation
mysql::ranges::Can_unfold_with Concept Reference

True if Unfold_t<Source_t>unfold(Source_t) is defined and returns a range. More...

#include <flat_view.h>

Concept definition

template<class Source_t, class Unfold_t>
concept mysql::ranges::Can_unfold_with = requires(Source_t source) {
{ Unfold_t::unfold(source) } -> std::ranges::range;
}
True if Unfold_t<Source_t>unfold(Source_t) is defined and returns a range.
Definition: flat_view.h:61
repeated Source source
Definition: replication_asynchronous_connection_failover.proto:42

Detailed Description

True if Unfold_t<Source_t>unfold(Source_t) is defined and returns a range.