Czytam RWH, i doszedłem do rozdziału 9. Wprowadza się następujący fragment kodu:Funkcja „rączka” i Real World Haskell
import System.IO
import Control.Exception
saferFileSize :: FilePath -> IO (Maybe Integer)
saferFileSize path = handle (\_ -> return Nothing) $ do
h <- openFile path ReadMode
size <- hFileSize h
hClose h
return (Just size)
To nie będzie jednak skompilować, dając następujący komunikat o błędzie:
test.hs:5:22:
Ambiguous type variable `e0' in the constraint:
(Exception e0) arising from a use of `handle'
Probable fix: add a type signature that fixes these type variable(s)
In the expression: handle (\ _ -> return Nothing)
In the expression:
handle (\ _ -> return Nothing)
$ do { h <- openFile path ReadMode;
size <- hFileSize h;
hClose h;
return (Just size) }
In an equation for `saferFileSize':
saferFileSize path
= handle (\ _ -> return Nothing)
$ do { h <- openFile path ReadMode;
size <- hFileSize h;
hClose h;
.... }
Co tu jest nie tak? Dlaczego nie skompiluje?
Dokumentacja dla 'handle' funkcji na stronie Haskell jest bardzo jasne, o tym (przynajmniej do poziomu wejścia ludzi - tych, którzy potrzebują dokumentacji) https://wiki.haskell.org/Exception Dzięki za bardzo jasne wyjaśnienie, że kompilator potrzebuje nas tylko do określenia typów wyjątków do obsługi! – jocull