Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Avro serialization support for Haskell Avro serialization and deserialization support for Haskell
-
A client for AWS X-Ray. The core client for enabling AWX X-Ray. See other `aws-xray-client-*` packages for usage and integration examples.
-
Classes for working with types that can change clothes. Types that are parametric on a functor are like Barbies that have an outfit for each role. This package provides the basic abstractions to work with them comfortably.
-
Featureful preludes formed solely from the "base" package A library which aims to reexport all the non-conflicting and most general definitions from the "base" package. This includes APIs for applicatives, arrows, monoids, foldables, traversables, exceptions, generics, ST, MVars and STM. This package will never have any dependencies other than "base". Besides a rich prelude it provides limited ones like BasePrelude.DataTypes, which only exports the data-types defined across the "base" package, and BasePrelude.Operators, which only exports the common operators. Versioning policy The versioning policy of this package deviates from PVP in the sense that its exports in part are transitively determined by the version of "base". Therefore it's recommended for the users of "base-prelude" to specify the bounds of "base" as well.
-
Implementation of BASE58 transcoding for ByteStrings Implementation of BASE58 transcoding copy-pasted from haskoin package
-
Type-safe, feature-complete SQL query and manipulation interface for Haskell Beam is a Haskell library for type-safe querying and manipulation of SQL databases. Beam is modular and supports various backends. In order to use beam, you will need to use beam-core along with a specific backend (such as beam-postgres or beam-sqlite) as well as the corresponding backend. For more information, see the user manual and tutorial on GitHub pages.
-
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- Numeric.Search provides the generic search combinator, to search for pure and monadic predicates.
- Numeric.Search.Bounded , Numeric.Search.Integer , Numeric.Search.Range provides the various specialized searchers, which means less number of function arguments, and easier to use.
-
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.
-
Bugsnag error reporter for Haskell Please see README.md
-
a bitvector datatype that is parameterized by the vector width This module defines a width-parameterized bitvector type and various associated operations.