Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Portable temporary files and directories with automatic deletion The functions for creating temporary files and directories in the base library are quite limited. The unixutils package contains some good ones, but they aren't portable to Windows. This library repackages the Cabal implementations of its own temporary file and folder functions so that you can use them without linking against Cabal or depending on it being installed. This library provides the same functionality as the temporary package, but uses resourcet to provide automatic deletion without nesting withTempFile.
-
Tunable sorting for responsive robustness and beyond A tunable tensor-based structure for sorting algorithms along with various sample configurations. Birthed from an exploration of robustness in sorting algorithms, inspired by Beyond Efficiency by David H. Ackley and Beyond Efficiency by Dave Ackley by Future of Coding.
-
termbox + reactive-banana This package provides a reactive-banana FRP interface to termbox programs. See also:
- termbox-tea for an Elm Architecture interface.
-
termbox bindings This package provides bindings to termbox v1.1.4, a simple C library for writing text-based user interfaces: https://github.com/termbox/termbox The full source of termbox v1.1.4 is bundled; you do not need to install any system packages to use this library. See also:
- termbox-bindings-hs for higher-level bindings.
- termbox for even higher-level bindings.
-
termbox bindings This package provides bindings to termbox, a simple C library for writing text-based user interfaces: https://github.com/termbox/termbox. See also:
- termbox-bindings-c for lower-level bindings.
- termbox for higher-level bindings.
-
termbox + The Elm Architecture This package provides an Elm Architecture interface to termbox programs. See also:
- termbox-banana for a reactive-banana FRP interface.
-
A progress bar in the terminal A progress bar conveys the progress of a task. This package implements a progress bar that is displayed in a terminal. See the module System.ProgressBar to get started or look at the terminal-progress-bar-example package. The animated progress bar depends entirely on the interpretation of the carriage return character ('\r'). If your terminal interprets it as something else than "move cursor to beginning of line", the animation won't work.
package
test-framework-leancheck LeanCheck support for test-framework. LeanCheck support for test-framework. This package can be used to incorporate LeanCheck tests into test-framework test suites. Please see the Haddock documentation and README for more details.
-
Text styling for ANSI terminals. Text styling for ANSI terminals using SGR codes, as defined by the ECMA-48 standard. Supports foreground/background color, bold/faint intensity, italic, single/double underline, strikethrough, frame, encircle, and overline escape sequences. Some styles may not work on your terminal. Also features terminal detection, so redirecting styled output to a file will automatically strip the ANSI escape sequences.
-
Binary instances for text types A compatibility layer providing Binary instances for strict and lazy text types for versions older than 1.2.1 of https://hackage.haskell.org/package/text.