std::experimental::ranges::tag::in, in1, in2, out, out1, out2, fun, min, max, begin, end
From cppreference.com
< cpp | experimental | ranges
Defined in header <experimental/ranges/algorithm>
|
||
struct in { /* implementation-defined */ }; struct in1 { /* implementation-defined */ }; |
(ranges TS) | |
These classes are TagSpecifier
s for use with ranges::tagged.
The name of a specifier is also the element name it corresponds to. For instance, ranges::tagged<std::pair<int, int>, tag::min, tag::max> provides a set of named accessors named min
and a set of named accessors named max
.