Guest User

Untitled

a guest
Jan 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. conduitFilesFilter :: ProjectFilter -> Path Abs Dir -> IO [Path Abs File]
  2. conduitFilesFilter projFilter dirname' = do
  3. (_, allFiles) <- listDirRecur dirname'
  4. C.runConduit $
  5. C.yieldMany allFiles
  6. .| C.filterMC (filterMatchingFile projFilter)
  7. .| C.sinkList
Add Comment
Please, Sign In to add comment