CPARK 1.0
A light-weighted, distributed computing framework for C++ that offers a fast and general-purpose large data processing solution.
|
#include <filter_rdd.h>
Classes | |
class | Iterator |
Public Types | |
using | OriginalIterator = std::ranges::iterator_t< V > |
using | OriginalSentinel = std::ranges::sentinel_t< V > |
Public Member Functions | |
constexpr | FilterView (V view, Func func) |
constexpr auto | begin () const |
constexpr auto | end () const |
A new view created from an original view (V) filtered by some predication function (Func). It has almost the same usage as std::ranges::filter_view, except that it provides begin() const
and end() const
.
|
inlineconstexpr |
Creates a new view created from an original view
filtered by some predication function Func
.
|
inlineconstexpr |
Returns the begin iterator of FilterView.
|
inlineconstexpr |
Returns the end sentinel of FilterView.