Hoogle Search
Within LTS Haskell 24.34 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Type-level integers, booleans, lists using type families TFP is an abbreviation for Type Family Programming. It provides implementations of type-level integers and booleans, and (eventually) simple type-level data structures. It uses type families as functions to produce new types, which provides an intuitive way to parameterize data types and functions on numerical values at compile time.
-
Fork threads and wait for their result This package provides functions to fork threads and wait for their result, whether it's an exception or a normal value. Besides waiting for the termination of a single thread this packages also provides functions to wait for a group of threads to terminate. This package is similar to the threadmanager, async and spawn packages. The advantages of this package are:
- Simpler API.
- More efficient in both space and time.
- No space-leak when forking a large number of threads.
- Correct handling of asynchronous exceptions.
- GHC specific functionality like forkOn and forkIOWithUnmask.
-
A basic library for defining units of time as types. In many cases, it is useful (either for error checking or documentation reasons) to define input and output types as having a particular unit of time. In addition, by creating a type class defining type units, this library should make it easier to separate the units of time the developer wants to think in versus the units of time the library author wants to think in.
-
A modern parser combinator library with convenient diagnostics A modern parser combinator library with slicing and Clang-style colored diagnostics For example: (Local Copy)
-
Please see the README on GitHub at https://github.com/YoshikuniJujo/type-flip#readme
-
Type set Please see the README on GitHub at https://github.com/YoshikuniJujo/type-set#readme
-
Unicode normalization Fast Unicode 14.0.0 normalization in Haskell (NFC, NFKC, NFD, NFKD).
-
Unify verious color formats Please see the README on GitHub at https://github.com/YoshikuniJujo/union-color#readme
-
Cross-platform support for Vty This package provides a generic interface for multiple Vty platforms in one package so you don't have to conditionally depend on them in your cabal file.
-
A Wadler/Leijen Pretty Printer for Text values A clone of wl-pprint for use with the text library.