| Copyright | (c) 2019-2020 Vaclav Svejcar |
|---|---|
| License | BSD-3 |
| Maintainer | vaclav.svejcar@gmail.com |
| Stability | experimental |
| Portability | POSIX |
| Safe Haskell | None |
| Language | Haskell2010 |
Headroom.UI.Progress
Description
UI component that allows to display progress in console line interface.
Documentation
Progress indication. First argument is current progress, second the maximum value.
zipWithProgress :: [a] -> [(Progress, a)] Source #
Zips given list with the progress info.
>>>zipWithProgress ["a", "b"][(Progress 1 2,"a"),(Progress 2 2,"b")]