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.
package
natural-transformation A natural transformation package. A natural transformation transforms a container f a into another container g a. Natural transformations act as functor morphisms in category theory. The naming of ~>, :~> and $$ were taken, with permission, from Edward Kmett's indexed package.
-
Helper modules for CArray wrappers to BLAS and LAPACK Netlib is a collection of packages for efficient numeric linear algebra. Most prominent parts of Netlib are BLAS and LAPACK. These packages contain functions for matrix computations, solution of simultaneous linear equations and eigenvalue problems. This package provides definitions shared by the packages blas-carray and lapack-carray.
-
Helper modules for comfort-array wrappers to BLAS and LAPACK Netlib is a collection of packages for efficient numeric linear algebra. Most prominent parts of Netlib are BLAS and LAPACK. These packages contain functions for matrix computations, solution of simultaneous linear equations and eigenvalue problems. This package provides definitions shared by the packages blas-comfort-array and lapack-comfort-array.
-
Loading PBM, PGM, PPM image files This package contains pure Haskell parsers for the netpbm image formats: PBM, PGM and PPM, for both ASCII and binary encodings. All netpbm image formats are implemented (P1 - P6). The current implementation parses PPM images at around 10 MB/s on a Core i5-2520M.
-
Parser for .netrc files This package provides a parser and a printer for so-called .netrc files. See netrc(5) manual page for more information about .netrc files.
-
Functional reactive programming library This library provides interfaces for and implements wire arrows useful both for functional reactive programming (FRP) and locally stateful programming (LSP).
-
Library to control network protocols Common parts to control network protocols
package
network-transport-inmemory In-memory instantiation of Network.Transport This is a transport implementation that could be used for local communication in the same address space (i.e. one process). . It could be used either for testing purposes or for local communication that require the network-transport semantics. . NB: network-tranpsport-inmemory does not support cross-transport communication. All endpoints that want to comminicate should be created using the same transport.
package
network-transport-tests Unit tests for Network.Transport implementations Unit tests for Network-Transport implementations.
-
A typeclass and set of functions for working with newtypes. Per Conor McBride, the Newtype typeclass represents the packing and unpacking of a newtype, and allows you to operate under that newtype with functions such as ala. See Control.Newtype for documentation and examples.