CPARK 1.0
A light-weighted, distributed computing framework for C++ that offers a fast and general-purpose large data processing solution.
Loading...
Searching...
No Matches
cpark::concepts::Split Concept Reference

#include <base_rdd.h>

Concept definition

template<typename S>
concept cpark::concepts::Split = std::ranges::input_range<S> && concepts::HasDependency<S>
Definition base_rdd.h:33
Definition base_rdd.h:44

Detailed Description

Split is a sub-partition of data from an Rdd, and is the smallest computing unit in cpark's computing tasks, It is an input_range whose objects have some dependency relationship between each other.