Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
package
distributed-process-systest Cloud Haskell Test Support Testing Frameworks and Capabilities for programs built on Cloud Haskell
-
Pandoc-style document templates This is the text templating system used by pandoc. It supports variable interpolation, iteration, tests for non-blank values, pipes, and partials. Templates are rendered to doclayout Docs, and variable values may come from a variety of different sources, including aeson Values.
-
Generate driver file for doctest's cabal integration doctest-driver-gen is a doctest's driver file generator. It lets you automatically generate driver file for doctest's cabal integration.
-
Codegen helping you define domain models
- For introduction and demo skip to Readme.
- For documentation and syntax reference see the Domain.Docs module.
- For API documentation refer to the Domain module, which exports the whole API of this package.
-
Low-level API of "domain" Use this package for defining extensions to "domain". Primarily derivers.
-
Levenshtein and restricted Damerau-Levenshtein edit distances Optimized edit distances for fuzzy matching, including Levenshtein and restricted Damerau-Levenshtein algorithms.
-
An easy to use, performant extensible effects library. An easy to use, performant extensible effects library with seamless integration with the existing Haskell ecosystem. . This library provides core definitions with a minimal dependency footprint. See the effectful package for the "batteries-included" variant.
-
Conversion between emoji characters and their names. This package provides functions for converting emoji names to emoji characters and vice versa. How does it differ from the emoji package?
- It supports a fuller range of emojis, including all those supported by GitHub
- It supports lookup of emoji aliases from emoji
- It uses Text rather than String
- It has a lighter dependency footprint: in particular, it does not require aeson
- It does not require TemplateHaskell
-
A small library to deal with executable endings A small library to deal with executable endings. Uses a Maybe data representation inside an IO monad. It is a fork of now deprecated library mmsyn3.
-
Sets of enumeration values represented by machine words With this package you can create a type safe interface to flag sets. It is intended for interfacing to C libraries via FFI, where Word8, Word16, or Word32 types are commonly used to store bit vectors. E.g. the type EnumSet Word16 Ordering represents a flag set stored in a Word16 that supports the flags LT, EQ, GT. This package is similar to the bitset package and the Data.Edison.Coll.EnumSet module in the edison package, however our implementation allows you to choose the embedding type and thus the maximum size of the set. See also data-flags and Data.EnumSet in enummapset.