Haskell Language
Streaming IO
Ricerca…
Streaming IO
io-streams
è una libreria basata su Stream che si concentra sull'astrazione Stream ma per IO. Espone due tipi:
InputStream
: un handle intelligente di sola letturaOutputStream
: un handle intelligente di sola scrittura
Possiamo creare uno stream con makeInputStream :: IO (Maybe a) -> IO (InputStream a)
. La lettura da uno stream viene eseguita usando read :: InputStream a -> IO (Maybe a)
, dove Nothing
indica 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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow