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.

  1. package interpolate

    String interpolation done right String interpolation done right

  2. package jose

    JSON Object Signing and Encryption (JOSE) and JSON Web Token (JWT) library Implementation of JSON Object Signing and Encryption (JOSE) and JSON Web Token (JWT; RFC 7519). The JSON Web Signature (JWS; RFC 7515) implementation is complete. EdDSA signatures (RFC 8037) and secp256k1 (RFC 8812) are supported. JWK Thumbprint (RFC 7638) is supported. JSON Web Encryption (JWE; RFC 7516) is not yet implemented. The ECDSA implementation is vulnerable to timing attacks and should only be used for verification.

  3. package jsaddle

    Interface for JavaScript that works with GHCJS and GHC This package provides an EDSL for calling JavaScript that can be used both from GHCJS and GHC. When using GHC the application is run using Warp and WebSockets to drive a small JavaScript helper.

  4. package lens-family

    Lens Families This package provides first class functional references in Van Laarhoven style supporting the following optics:

    • Lenses (view, over)
    • Traversals (toListOf, matching, over)
    • Setters (over)
    • Grates (zipWithOf, under, review)
    • Resetters (under)
    • Adapters (view, review)
    • Grids (toListOf, over / under, review)
    • Prisms (matching, over / under, review)
    • Getters (view)
    • Folders (toListOf)
    • Reviewers (review)

  5. package modern-uri

    Modern library for working with URIs Modern library for working with URIs.

  6. package morpheus-graphql-core

    Morpheus GraphQL Core Build GraphQL APIs with your favorite functional language!

  7. package mwc-probability

    Sampling function-based probability distributions. A simple probability distribution type, where distributions are characterized by sampling functions. This implementation is a thin layer over mwc-random, which handles RNG state-passing automatically by using a PrimMonad like IO or ST s under the hood. Examples Transform a distribution's support while leaving its density structure invariant:

    -- uniform over [0, 1] to uniform over [1, 2]
    fmap succ uniform
    
    Sequence distributions together using bind:
    -- a beta-binomial compound distribution
    beta 1 10 >>= binomial 10
    
    Use do-notation to build complex joint distributions from composable, local conditionals:
    hierarchicalModel = do
    [c, d, e, f] <- replicateM 4 $ uniformR (1, 10)
    a <- gamma c d
    b <- gamma e f
    p <- beta a b
    n <- uniformR (5, 10)
    binomial n p
    

  8. package neat-interpolation

    Quasiquoter for neat and simple multiline text interpolation Quasiquoter for producing Text values with support for a simple interpolation of input values. It removes the excessive indentation from the input and accurately manages the indentation of all lines of the interpolated variables.

  9. package network-simple

    Simple network sockets usage patterns. This module exports functions that abstract simple network socket usage patterns. See the changelog.md file in the source distribution to learn about any important changes between versions.

  10. package numeric-prelude

    An experimental alternative hierarchy of numeric type classes The package provides an experimental alternative hierarchy of numeric type classes. The type classes are more oriented at mathematical structures and their methods come with laws that the instances must fulfill.

Page 47 of many | Previous | Next