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.

  1. package binary-search

    Binary and exponential searches Introduction This package provides varieties of binary search functions. c.f. Numeric.Search for the examples. These search function can search for pure and monadic predicates, of type:

    pred :: Eq b => a -> b
    pred :: (Eq b, Monad m) => a -> m b
    
    The predicates must satisfy that the domain range for any codomain value is continuous; that is, ∀x≦y≦z. pred x == pred z ⇒ pred y == pred x . For example, we can address the problem of finding the boundary of an upward-closed set of integers, using a combination of exponential and binary searches. Variants are provided for searching within bounded and unbounded intervals of both Integer and bounded integral types. The package was created by Ross Paterson, and extended by Takayuki Muranushi, to be used together with SMT solvers. The Module Structure

  2. package box

    A profunctor effect system? This might be a profunctor effect system, but is unlike all the others, so it's hard to say for sure.

  3. package bugsnag

    Bugsnag error reporter for Haskell Please see README.md

  4. package bv-sized

    a bitvector datatype that is parameterized by the vector width This module defines a width-parameterized bitvector type and various associated operations.

  5. package bytestring-strict-builder

    An efficient strict bytestring builder According to the competition benchmarks, this library provides on average the fastest builder of strict bytestrings. . Practical benchmarks have proven it to be highly performant as well. The encoders from the "postgresql-binary" library have shown a stable performance improvement by factors of up to 10 after the migration from the standard builder to "bytestring-strict-builder".

  6. package bzlib

    Compression and decompression in the bzip2 format This package provides a pure interface for compressing and decompressing streams of data represented as lazy ByteStrings. It uses the bz2 C library so it has high performance. It provides a convenient high level API suitable for most tasks and for the few cases where more control is needed it provides access to the full bzip2 feature set.

  7. package bzlib-conduit

    Streaming compression/decompression via conduits. Please see the README and docs at https://www.stackage.org/package/bzlib-conduit

  8. package cairo-image

    Image for Cairo Please see the README on GitHub at https://github.com/YoshikuniJujo/cairo-image#readme

  9. package cereal-conduit

    Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits.

  10. package character-ps

    Pattern synonyms for ASCII characters for Word8, Word16 etc Pattern synonyms for ASCII characters, e.g.

    pattern SPACE :: Word8
    pattern SPACE = 0x20
    

Page 77 of many | Previous | Next