libfaster API Documentation  Development Version
Super fast distributted computing
Update Operators

Description

Run a iterative update operaton.

Parameters
K- Key type of the created dataset
T- Value type of the source dataset
L- Key type of the created dataset
U- Value type of the created dataset
funcP- A function pointer of a user function void F(T&) that will be used on each dataset entry
Returns
A pointer to a new dataset

Functions

indexedFdd< K, T > * faster::indexedFdd< K, T >::update (updateIFunctionP< K, T > funcP)
 updates the content of a indexedFDD
 

Typedefs

template<typename K , typename T >
using faster::updateIFunctionP = void(*)(K &inKey, T &input)