-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Progressbar API -- -- This package implements a progress bar api built on the io-reactive -- package. @package progressbar @version 0.0.1 -- | A Progress bar module ProgressBar -- | Progress bar meter. data Progress Progress :: IO () -> IO () -> Progress -- | This increments the progressbar pr_inc :: Progress -> IO () -- | This finishes the progressbar NOTE: it is unusable after this pr_done :: Progress -> IO () -- | Create a progress bar mkProgress :: Handle -> IO Progress