[Home] [By Thread] [By Date] [Recent Entries]
Reflecting on the recent discussion on finding a better word for "de-duplication" and in particular for "de-duplicated", here is what name is used in Haskell: nub Here's the definition from the List.hs library module:
nubBy :: (a -> a -> Bool) -> [a] -> [a] nubBy eq [] = [] nubBy eq (x:xs) = x : nubBy eq (filter (\y -> not (eq x y)) xs) So, in Haskellese, de-duplicated will be just "nubbed".
|

Cart



