Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. package snap-core

    Snap: A Haskell Web Framework (core interfaces and types) Snap is a simple and fast web development framework and server written in Haskell. For more information or to download the latest version, you can visit the Snap project website at http://snapframework.com/. This library contains the core definitions and types for the Snap framework, including:

    1. Primitive types and functions for HTTP (requests, responses, cookies, post/query parameters, etc)
    2. A monad for programming web handlers called "Snap", which allows:
    • Stateful access to the HTTP request and response objects
    • Monadic failure (i.e. MonadPlus/Alternative instances) for declining to handle requests and chaining handlers together
    • Early termination of the computation if you know early what you want to return and want to prevent further monadic processing
    Quick start: The Snap monad and HTTP definitions are in Snap.Core.

  2. package template-haskell-compat-v0208

    Backward-compatibility layer for Template Haskell newer than 2.8 Collection of functions that aims to help you to write Template Haskell that is compatible with all versions of GHC starting from 7.6. The oldest GHC serves as the common denominator here, so the newer functionality is avoided here.

  3. package terminal-size

    Get terminal window height and width Get terminal window height and width without ncurses dependency.

  4. package text-builder-linear

    Builder for Text and ByteString based on linear types Strict Text and ByteString builder, which hides mutable buffer behind linear types and takes amortized linear time.

  5. package unbounded-delays

    Unbounded thread delays and timeouts The threadDelay and timeout functions from the base library use the bounded Int type for specifying the delay or timeout period. This packages provides alternatives which use the unbounded Integer type.

  6. package uniplate

    Help writing simple, concise and fast generic operations. Uniplate is library for writing simple and concise generic operations. Uniplate has similar goals to the original Scrap Your Boilerplate work, but is substantially simpler and faster. To get started with Uniplate you should import one of the three following modules:

    In addition, some users may want to make use of the following modules:

  7. package unix-time

    Unix time parser/formatter and utilities Fast parser/formatter/utilities for Unix time

  8. package vector-binary-instances

    Instances of Data.Binary for vector Instances for Binary for the types defined in the vector package, making it easy to serialize vectors to and from disk. We use the generic interface to vectors, so all vector types are supported. Specific instances are provided for unboxed, boxed and storable vectors. . To serialize a vector: . > *Data.Vector.Binary> let v = Data.Vector.fromList [1..10] > *Data.Vector.Binary> v > fromList [1,2,3,4,5,6,7,8,9,10] :: Data.Vector.Vector > *Data.Vector.Binary> encode v > Chunk "NULNULNULNULNUL...NULNULNULtNULNULNULNULn" Empty . Which you can in turn compress before writing to disk: . > compress . encode $ v > Chunk "US139bNULNULN...229240,254:NULNULNUL" Empty . Try the cereal-vector package if you are looking for Data.Serialize instances.

  9. package vector-sized

    Size tagged vectors Please see README.md

  10. package xdg-basedir

    A basic implementation of the XDG Base Directory specification. On Unix platforms, this should be a very straightforward implementation of the XDG Base Directory spec. On Windows, it will attempt to do the right thing with regards to choosing appropriate directories.

Page 35 of many | Previous | Next