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.
-
Brotli (RFC7932) compression and decompression Brotli (RFC7932) is a generic-purpose lossless compression algorithm suitable for HTTP compression that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling. This package provides a pure interface for compressing and decompressing Brotli streams of data represented as lazy ByteStrings. A monadic incremental interface is provided as well. This package relies on Google's C implementation. The following packages are based on this package and provide API support for popular streaming frameworks:
- brotli-streams (for io-streams)
- pipes-brotli (for pipes)
- brotli-conduit (for conduit)
-
IO-Streams interface for Brotli (RFC7932) compression Brotli (RFC7932) is a generic-purpose lossless compression algorithm suitable for HTTP compression that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling. This package provides an IO-Streams interface for the Brotli compression algorithm. Decompressing Brotli InputStreams and compressing OutputStreams to Brotli streams with tunable (de)compression parameters is supported.
-
Chunked HTTP transfer encoding for bytestring builders This library contains functions for encoding bytestring builders for chunked HTTP/1.1 transfer. This functionality was extracted from the blaze-builder package.
-
A Bugsnag client for Haskell. Please see the README at https://github.com/jwoudenberg/bugsnag-hs.
-
WAI integration for Bugsnag error reporting for Haskell Please see README.md
-
Parse and render URI templates. Burrito is a Haskell library for parsing and rendering URI templates. According to RFC 6570: "A URI Template is a compact sequence of characters for describing a range of Uniform Resource Identifiers through variable expansion." Burrito implements URI templates according to the specification in that RFC. The term "uniform resource identifiers" (URI) is often used interchangeably with other related terms like "internationalized resource identifier" (IRI), "uniform resource locator" (URL), and "uniform resource name" (URN). Burrito can be used for all of these. If you want to get technical, its input must be a valid IRI and its output will be a valid URI or URN. Although Burrito is primarily intended to be used with HTTP and HTTPS URIs, it should work with other schemes as well.
-
Chops a command or program invocation into digestable pieces. See the README (it is properly formatted on github).
-
Flexible byte dump helpers for human readers. A set of helpers to dump bytes with lots of different output formats easy to read for humans eyes.
-
Universal hashing of bytes Taken together, universal hash functions and a good source of entropy provide a foundation for hash maps guarantee O(1) lookups even if an adversary chooses the keys. This library implements such a hash map. The implementation of lookup is tuned for performance. The functions for building hash maps are not since they are intended to be called infrequently.
-
Type-classes to convert values to and from ByteString. Defines the type-classes ToByteString and FromByteString to convert values to and from textual ByteString encodings.