j
k
j a
j l
On Sat, 18 May 2013, Andreas Abel wrote:
On some haskell list I read that for lists, mapM_ f l is more space-efficient that just void $ mapM f l Any reason why mapM_ is missing from Data.Traversable?
On some haskell list I read that for lists,
mapM_ f l
is more space-efficient that just
void $ mapM f l
Any reason why mapM_ is missing from Data.Traversable?
Because it is in Data.Foldable.
Back to the thread
Back to the list