Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. 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.

  2. package casing

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

  3. 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.

  4. package crypton-x509-validation

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

  5. 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.

  6. 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.

  7. 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.

  8. package filepattern

    File path glob-like matching A library for matching files using patterns such as "src/**/*.png" for all .png files recursively under the src directory. Features:

    • All matching is O(n). Most functions precompute some information given only one argument.
    • See System.FilePattern and ?== simple matching and semantics.
    • Use match and substitute to extract suitable strings from the * and ** matches, and substitute them back into other patterns.
    • Use step and matchMany to perform bulk matching of many patterns against many paths simultaneously.
    • Use System.FilePattern.Directory to perform optimised directory traverals using patterns.
    Originally taken from the Shake library.

  9. package finite-typelits

    A type inhabited by finitely many values, indexed by type-level naturals A type inhabited by finitely many values, indexed by type-level naturals.

  10. package foreign-store

    Store a stable pointer in a foreign context to be retrieved later. Store a stable pointer in a foreign context to be retrieved later. Persists through GHCi reloads.

Page 45 of many | Previous | Next