Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. package bimap

    Bidirectional mapping between two key types A data structure representing a bidirectional mapping between two key types. Each value in the bimap is associated with exactly one value of the opposite type.

  2. package boxes

    2D text pretty-printing library A pretty-printing library for laying out text in two dimensions, using a simple box model.

  3. package bson

    BSON documents are JSON-like objects with a standard binary encoding. A BSON Document is an untyped (dynamically type-checked) record. I.e. it is a list of name-value pairs, where a Value is a single sum type with constructors for basic types (Bool, Int, Float, String, and Time), compound types (List, and (embedded) Document), and special types (Binary, Javascript, ObjectId, RegEx, and a few others). A BSON Document is serialized to a standard binary encoding defined at http://bsonspec.org. This implements version 1 of that spec.

  4. package carray

    A C-compatible array library. A C-compatible array library. Provides both an immutable and mutable (in the IO monad) interface. Includes utilities for multi-dimensional arrays, slicing and norms. Memory is 16-byte aligned by default to enable use of vector instructions.

  5. package casing

    Convert between various source code casing conventions Converts between camelCase, PascalCase, kebab-case, and three flavors of snake_case.

  6. package convertible

    Typeclasses and instances for converting between types convertible provides a typeclass with a single function that is designed to help convert between different types: numeric values, dates and times, and the like. The conversions perform bounds checking and return a pure Either value. This means that you need not remember which specific function performs the conversion you desire. Also included in the package are optional instances that provide conversion for various numeric and time types, as well as utilities for writing your own instances. Finally, there is a function that will raise an exception on bounds-checking violation, or return a bare value otherwise, implemented in terms of the safer function described above. Convertible is also used by HDBC 2.0 for handling marshalling of data to and from databases. Convertible is backed by an extensive test suite and passes tests on GHC and Hugs.

  7. package crypton-x509-validation

    X.509 Certificate and CRL validation X.509 Certificate and CRL validation. please see README

  8. package digest

    CRC32 and Adler32 hashes for bytestrings This package provides efficient hash implementations for strict and lazy bytestrings. For now, CRC32 and Adler32 are supported; they are implemented as FFI bindings to efficient code from zlib.

  9. package double-conversion

    Fast conversion between single and double precision floating point and text A library that performs fast, accurate conversion between floating point and text. This library is implemented as bindings to the C++ double-conversion library written by Florian Loitsch at Google: https://github.com/floitsch/double-conversion. Now it can convert single precision numbers, and also it can create Builder, instead of bytestring or text. The Text versions of these functions are about 30 times faster than the default show implementation for the Double type. The ByteString versions are have very close speed to the Text versions; Builder versions (both for Text and Bytestring) are slower on single value, but they are much faster on large number of values (up to 20x faster on list with 20000 doubles). As a final note, be aware that the bytestring-show package is about 50% slower than simply using show.

  10. package erf

    The error function, erf, and related functions. A type class for the error function, erf, and related functions. Instances for Float and Double.

Page 45 of many | Previous | Next