Daily bit(e) of C++ | std::views::empty, std::views::single, std::views::repeat
Daily bit(e) of C++ ♻️80, Three views where all elements have the same value: std::views::empty, std::views::single, std::views::repeat.
The ranges library provides three views where all elements have the same value.
C++20 std::views::empty represents a view with zero elements.
C++20 std::views::single represents a view with one element.
C++23 std::views::repeat can represent both finite and infinite views of the same value.