[Haskell-cafe] How to understand such a `case` ?
zaxis
z_axis at 163.com
Tue Dec 8 19:59:21 EST 2009
findHelper (x:xs) = do -- not lazy, but that's not really important here
filex <- fileExists (file x)
filex' <- fileExists (file' x)
case () of
_
| filex -> return $ Just $ file x
| filex' -> return $ Just $ file' x
| otherwise -> findHelper xs
file x = foldl1 joinFileName (x ++ [helper])
file' x = (file x) ++ (getConfig "exe_ext")
Sincerely!
-----
fac n = foldr (*) 1 [1..n]
--
View this message in context: http://old.nabble.com/How-to-understand-such-a-%60case%60---tp26703526p26703526.html
Sent from the Haskell - Haskell-Cafe mailing list archive at Nabble.com.
More information about the Haskell-Cafe
mailing list