Hoogle Search
Within LTS Haskell 24.28 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
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.
-
checks to see if a given bytestring adheres to a certain encoding This module provides a family of functions, isX, of type ByteString -> Bool, which return True if the input ByteString adheres to a certain encoding X, and False otherwise.
-
Convert between ByteString and Vector.Storable without copying This library allows conversion between the types from Data.ByteString (package bytestring) and Data.Vector.Storable (package vector) without copying the underlying data. This is useful, for example, when ByteString IO produces or consumes vectors of numbers in native byte order. The conversion relies on the fact that ByteString and Vector use their respective ForeignPtrs in compatible ways. This library is a fork of the spool package written by Keegan McAllister.
package
bytestring-tree-builder A very efficient ByteString builder implementation based on the binary tree According to the benchmarks this builder implementation beats all the alternatives. It is especially well-suited for generating strict bytestrings, beating the standard builder by at least the factor of 4.
-
Bindings to libbz2 High-level bindings to libbz2 via ByteString
-
The command-line interface for Cabal and Hackage. The solver component used in cabal-install command-line program
-
An in-memory key/value store with expiration support An in-memory key/value store with expiration support, similar to patrickmn/go-cache for Go. The cache is a shared mutable HashMap implemented using STM and with support for expiration times.