CPARK 1.0
A light-weighted, distributed computing framework for C++ that offers a fast and general-purpose large data processing solution.
|
#include <merged_view.h>
Classes | |
class | Iterator |
Public Types | |
using | ViewType = std::ranges::range_value_t< R > |
Public Member Functions | |
MergedSameView (const R &views) | |
constexpr auto | begin () const |
constexpr auto | end () const |
A view combined from any number of views of the same type. It contains all the elements in these views with their original order.
R | A range of views to be combined. |
|
inlineexplicit |
Creates MergedSameView from a range of views to be combined.
|
inlineconstexpr |
The iterator to the first element of the combined views.
|
inlineconstexpr |
The sentinel pass the last element of the combined views.