Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. package socket

    An extensible socket library. This library is a minimal cross-platform interface for BSD style networking.

  2. package soxlib

    Write, read, convert audio signals using libsox This is an FFI binding to libsox of the Sox (Sound Exchanger) project http://sox.sourceforge.net/. It lets write, read and convert audio signals in various formats, resolutions, and numbers of channels. The package sox has similar functionality but calls the sox shell command.

  3. package special-values

    Typeclass providing special values Special values are provided by a SpecialValues typeclass. Those can be used for example by QuickCheck, see quickcheck-special.

  4. package speedy-slice

    Speedy slice sampling. Speedy slice sampling. This implementation of the slice sampling algorithm uses lens as a means to operate over generic indexed traversable functors, so you can expect it to work if your target function takes a list, vector, map, sequence, etc. as its argument. Additionally you can sample over anything that's an instance of both Num and Variate, which is useful in the case of discrete parameters. Exports a mcmc function that prints a trace to stdout, a chain function for collecting results in memory, and a slice transition operator that can be used more generally.

    import Numeric.MCMC.Slice
    import Data.Sequence (Seq, index, fromList)
    
    bnn :: Seq Double -> Double
    bnn xs = -0.5 * (x0 ^ 2 * x1 ^ 2 + x0 ^ 2 + x1 ^ 2 - 8 * x0 - 8 * x1) where
    x0 = index xs 0
    x1 = index xs 1
    
    main :: IO ()
    main = withSystemRandom . asGenIO $ mcmc 10000 1 (fromList [0, 0]) bnn
    

  5. package splitmix-distributions

    Random samplers for some common distributions, based on splitmix. Random samplers for some common distributions, as well as a convenient interface for composing them, based on splitmix. Please see the README on GitHub at https://github.com/ocramz/splitmix-distributions#readme

  6. package sql-words

    SQL keywords data constructors into OverloadedString This package contains SQL keywords constructors defined as OverloadedString literals and helper functions to concate these.

  7. package stache

    Mustache templates for Haskell Mustache templates for Haskell.

  8. package static-bytes

    A Haskell library providing types representing 8, 16, 32, 64 or 128 bytes of data. Please see the README on GitHub at https://github.com/commercialhaskell/static-bytes#readme

  9. package stm-hamt

    STM-specialised Hash Array Mapped Trie A low-level data-structure, which can be used to implement higher-level interfaces like hash-map and hash-set. Such implementations are presented by the stm-containers.

  10. package storable-endian

    Storable instances with endianness Storable instances with endianness

Page 142 of many | Previous | Next