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.
-
List Hackage reverse dependencies Command-line tool to list Hackage reverse dependencies. It is different from how Hackage itself tracks them: this tool accounts for all package components, including tests and benchmarks, and counts dependencies only across the latest releases. The approach is roughly equivalent to what https://packdeps.haskellers.com used to do.
-
A static website compiler library Hakyll is a static website compiler library. It provides you with the tools to create a simple or advanced static website using a Haskell DSL and formats such as markdown or RST. You can find more information, including a tutorial, on the website:
If you seek assistance, there's:- A google group: http://groups.google.com/group/hakyll
- An IRC channel, #hakyll on irc.libera.chat (we *do not* have a channel on Freenode anymore)
-
Convert from other blog engines to Hakyll. WordPress and Blogger only let one export posts in a limited number of formats, none of which are supported by Hakyll. hakyll-convert is created to bridge this gap, providing a way to turn other platform's datadumps into a set of files Hakyll understands.
-
A runtime environment for Haskell applications running on AWS Lambda. This library uniquely supports different types of AWS Lambda Handlers for your needs/comfort with advanced Haskell. Instead of exposing a single function that constructs a Lambda, this library exposes many.
-
Symmetry operations generater of Hall Symbols Please see the README on GitHub at https://github.com/narumij/hall-symbols#readme
-
Quasi-quoter for Happy parsers A Template-Haskell based version of the Happy parser generator. Used to generate parsers for BNFC-meta, currently this is the only use known to be working.
-
numhask shim for harpie. This package provides orphans and interface into the numhask API for harpie.
Usage
>>> {-# LANGUAGE RebindableSyntax #-} >>> import NumHask.Prelude >>> import Harpie.Fixed as F >>> import Harpie.Numhask qualified as N -
This library 'Has' transformers A very slim library for first-order effects based on monad transformers (and nearly nothing else). Given a transformer stack t1 (t2 (t3 (... m))) a, you can automatically lift any function thing :: tN m a into the stack with a single function, liftH.
-
Persistent containers Map and Set based on hashing. An implementation of persistent Map and Set containers based on hashing. The implementation is build on top of Data.IntMap.IntMap and Data.IntSet.IntSet, with very similar API. It uses Hashable class from the hashable package for hashing. This package can be used as a drop-in replacement for Data.Map and Data.Set modules. The Map key value is an Data.IntMap.IntMap indexed by the hash value, containing either one (key, value) or a Data.Map.Map key value for all keys with the same hash value. The Set elem is an Data.IntMap.IntMap indexed by the hash value, containing either one elem or Data.Set.Set elem for all elements with the same hash value.
package
haskell-src-exts-simple A simplified view on the haskell-src-exts AST This package provides a shim for haskell-src-exts (HSE), exposing the same AST but without annotations, using ghc's pattern synonyms. See README.md for further information and compatibility considerations.