churros-0.1.1.0: src/Control/Churro/Transport.hs
{-# LANGUAGE BlockArguments #-}
-- | Re-exporting Transport instances.
--
-- Also includes convenience functions for working directly with transports.
--
module Control.Churro.Transport
( module Control.Churro.Transport.Chan
, module Control.Churro.Transport
)
where
import Control.Churro.Transport.Chan
import Control.Churro.Types
-- | Write a list to a raw Transport.
--
-- >>> import Control.Concurrent.Chan
-- >>> :{
-- do
-- (i,o) <- flex :: IO (TransportChan (Maybe Int))
-- l2c i (map Just [1,2] ++ [Nothing])
-- yankAll' o print
-- :}
-- Just (Just 1)
-- Just (Just 2)
-- Just Nothing
-- Nothing
--
l2c :: Transport t => t (Maybe a) -> [a] -> IO ()
l2c c l = mapM_ (yeet c . Just) l >> yeet c Nothing