Haskell Language
Streaming IO
Recherche…
Streaming IO
io-streams
est une bibliothèque basée sur un flux qui se concentre sur l'abstraction du flux mais pour IO. Il expose deux types:
InputStream
: une poignée intelligente en lecture seuleOutputStream
: une poignée intelligente en écriture seule
Nous pouvons créer un flux avec makeInputStream :: IO (Maybe a) -> IO (InputStream a)
. La lecture d'un flux est effectuée en utilisant read :: InputStream a -> IO (Maybe a)
, où Nothing
dénote un EOF:
import Control.Monad (forever) import qualified System.IO.Streams as S import System.Random (randomRIO) main :: IO () main = do is <- S.makeInputStream $ randomInt -- create an InputStream forever $ printStream =<< S.read is -- forever read from that stream return () randomInt :: IO (Maybe Int) randomInt = do r <- randomRIO (1, 100) return $ Just r printStream :: Maybe Int -> IO () printStream Nothing = print "Nada!" printStream (Just a) = putStrLn $ show a
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow