packages feed

bluefin-0.0.10.0: src/Bluefin/System/IO.hs

-- | A safer interface to "System.IO.Handle"

module Bluefin.System.IO
  ( -- * Handle
    Handle,

    -- * Handlers
    withFile,

    -- * Effectful operations
    hPutChar,
    hPutStr,
    hPutStrLn,
    hFlush,

    -- * Unsafe

    unsafeWithHandle,
  )
where

import Bluefin.Internal.System.IO