|
Sunshine master
Self-hosted game stream host for Moonlight.
|
A round-robin iterator utility. More...
Classes | |
| class | it_wrap_t |
| CRTP base that provides iterator operators for round-robin iterators. More... | |
| class | round_robin_t |
| Iterator that cycles indefinitely over a fixed begin/end range. More... | |
Functions | |
| template<class V , class It > | |
| round_robin_t< V, It > | make_round_robin (It begin, It end) |
| Create a round-robin iterator over a fixed range. | |
A round-robin iterator utility.
| V | The value type. |
| T | The iterator type. |
| round_robin_t< V, It > round_robin_util::make_round_robin | ( | It | begin, |
| It | end ) |
Create a round-robin iterator over a fixed range.
| begin | Iterator or pointer marking the start of the input range. |
| end | Iterator or pointer marking the end of the input range. |
begin and wrapping before end.