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.
package
essence-of-live-coding-warp General purpose live coding framework essence-of-live-coding is a general purpose and type safe live coding framework. You can run programs in it, and edit, recompile and reload them while they're running. Internally, the state of the live program is automatically migrated when performing hot code swap. The library also offers an easy to use FRP interface. It is parametrized by its side effects, separates data flow cleanly from control flow, and allows to develop live programs from reusable, modular components. There are also useful utilities for debugging and quickchecking. This library contains a single-threaded interface to the WARP web server. WAI applications can be run this way.
-
Opcode types for Ethereum Virtual Machine (EVM) This library provides opcode types for the Ethereum Virtual Machine.
-
Efficient exact computation of combinatoric functions. Efficient exact computation of combinatoric functions.
-
Exception type hierarchy with TemplateHaskell see sample code in samples/
-
Exception monad transformer instances for mtl classes. This package provides exception monad transformer instances for the classes defined by mtl.
-
Provides the SHA1 hash of the program executable See README.md
-
Customizable quasiquote interpolation See https://hackage.haskell.org/package/exon/docs/Exon.html
-
Linear programming over exponent pairs Package implements an algorithm to minimize rational objective function over the set of exponent pairs
-
General purpose simple caching. A simple general purpose shared state cache map with automatic expiration of values, for caching the results of accessing a resource such as reading a file. With variations for Ord and Hashable keys using Data.Map.Strict and Data.HashMap.Strict, respectively.
-
generalize counter-examples of test properties Extrapolate is a tool able to provide generalized counter-examples of test properties where irrelevant sub-expressions are replaces with variables. For the incorrect property \xs -> nub xs == (xs::[Int]):
- [0,0] is a counter-example;
- x:x:_ is a generalized counter-example.