std::ranges::iota_view<W, Bound>:: begin
From cppreference.com
C++
Ranges library
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
|
std::ranges::iota_view
constexpr
/*iterator*/
begin
(
)
const
;
|
(since C++20) | |
Obtains an iterator to the beginning value.
Return value
Example
Run this code
#include <iostream> #include <ranges> int main() { auto iota{std::views::iota(2, 6)}; auto iter{iota.begin()}; while (iter != iota.end()) std::cout << *iter++ << ' '; std::cout << '\n'; }
Output:
2 3 4 5
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/iota_view/begin&oldid=176917
"