CPARK 1.0
A light-weighted, distributed computing framework for C++ that offers a fast and general-purpose large data processing solution.
|
#include <plain_rdd.h>
Public Types | |
using | Base = BaseRdd< PlainRdd< R > > |
Public Member Functions | |
constexpr | PlainRdd (R view, ExecutionContext *context) |
constexpr | PlainRdd (const PlainRdd &)=default |
PlainRdd & | operator= (const PlainRdd &)=default |
Public Member Functions inherited from cpark::BaseRdd< PlainRdd< R > > | |
BaseRdd (const BaseRdd< R > &prev, bool copy_id) | |
BaseRdd (const BaseRdd< R > &prev) | |
BaseRdd (ExecutionContext *context) | |
BaseRdd & | operator= (const BaseRdd< R > &prev) |
auto | begin () const |
auto | end () const |
ExecutionContext::RddId | id () const noexcept |
Public Attributes | |
friend | Base |
Additional Inherited Members | |
Protected Attributes inherited from cpark::BaseRdd< PlainRdd< R > > | |
ExecutionContext * | context_ |
ExecutionContext::RddId | rdd_id_ |
size_t | splits_num_ |
A plain RDD holding the same data from a std::ranges::view without any changes.
R | The type of the view containing the original data. |