Hoogle Search
Within LTS Haskell 24.49 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Several options for thread-local-storage (TLS) in Haskell. Thread-local storage, or TLS, is an important ingredient in many algorithms and data structures. The GHC compiler does not provide a built-in notion of TLS either at the IO-thread or OS thread level. This package provides a few different implementations of a simple TLS API. All exported public modules provide exactly the same interface with different implementations. Run the included criterion benchmark suite to ascertain which performs the best on your platform. Example criterion benchmark data can be found here (from an Intel Ivy-Bridge i7-3770 desktop): http://www.cs.indiana.edu/~rrnewton/datasets/xmen_tls_report.html
-
A simplified implementation of Erlang/OTP like supervisor over thread Please see the README on Github at https://github.com/nshimaza/thread-supervisor#readme
-
Extends the threads package with a bounded thread group Extends the threads package with a bounded thread group with the same interface as the original thread group.
-
GUI framework that uses the web browser as a display. Threepenny-GUI is a GUI framework that uses the web browser as a display. It's very easy to install because everyone has a web browser installed. A program written with Threepenny is essentially a small web server that displays the user interface as a web page to any browser that connects to it. You can freely manipulate the HTML DOM and handle JavaScript events from your Haskell code. Stability forecast: This is an experimental release! Send me your feedback! Significant API changes are likely in future versions. NOTE: This library contains examples, but they are not built by default. To build and install the example, use the buildExamples flag like this
cabal install threepenny-gui -fbuildExamples
-
Pattern language for improvised music Tidal is a domain specific language for live coding patterns.
-
Slippy map tile functionality. Tile/lonlat conversion utilities for slippy maps.
-
Type-level representations of time durations. Please see the README on GitHub at https://github.com/mbg/time-units-types#readme
-
A timer wheel This library provides a timer wheel data structure for registering one-shot or recurring IO actions to fire after a given amount of time. . It is similar to TimerManager from GHC.Event, but supports recurring actions, and can scale to handle many more registered actions.
-
tick based timers Tick-based timers and utilities, for games and discrete-time programs. Includes types and functions to work with sequence-based resources (e.g. animations, frames).
-
Convert English Words to Title Case Capitalize all English words except articles (a, an, the), coordinating conjunctions (for, and, nor, but, or, yet, so), and prepositions (unless they begin or end the title). The prepositions are taken from Wikipedia.