Searched defs:SizedSentinelView (Results 1 – 1 of 1) sorted by relevance
96 struct SizedSentinelView : std::ranges::view_base { struct98 constexpr explicit SizedSentinelView(int count = 8) : count_(count) {} in count_() argument99 constexpr auto begin() const { return RandomAccessIter(globalBuff); } in begin()100 constexpr int *end() const { return globalBuff + count_; } in end()