Research Article

An Abstract Description Method of Map-Reduce-Merge Using Haskell

Algorithm 13

moduleMerge lTable rTable =
  map (foldl union empty)            – Step 3
  $ map (map (uncurry mergeTwoPartition))       – Step 2
  $ getPartitionPair lTable rTable         – Step 1