Open treeowl opened 2 years ago
listFilesRecursive is defined using for and mconcat. Better to use foldM or foldlM, which will allow you to force set insertions as you go.
listFilesRecursive
for
mconcat
foldM
foldlM
Feel free to contribute, but I probably won't do this one.
listFilesRecursive
is defined usingfor
andmconcat
. Better to usefoldM
orfoldlM
, which will allow you to force set insertions as you go.