std::ranges::OutputRange (3) - Linux Manuals
std::ranges::OutputRange: std::ranges::OutputRange
NAME
std::ranges::OutputRange - std::ranges::OutputRange
Synopsis
Defined in header <ranges>
template<class R, class T>
concept OutputRange = Range<R> && OutputIterator<iterator_t<R>, T>;
The OutputRange concept is a refinement of Range for which ranges::begin returns a model of OutputIterator.