Homam Hosseini

Results 2 comments of Homam Hosseini

`(group-by f) >> obj-to-pairs >> (map ([k, v]) -> merge k, v)` is a very common pattern when dealing with tabular data like the result of SQL queries. I wish...

I think it should be an empty array. ``` scanl1 :: (a -> a -> a) -> [a] -> [a] ``` Empty array fits the expected type.