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 monoidal-containers

    Containers with monoidal accumulation Containers with merging via monoidal accumulation. The Monoid instances provided by the containers and unordered-containers packages merge structures in a left-biased manner instead of using the underlying monoidal structure of the value. This package wraps the types provided by these packages, but provides Monoid instances implemented in terms of the value type's mappend. For instance, the Monoid Map instance looks like,

    instance (Ord k, Semigroup a) => Monoid (MonoidalMap k a)
    

  2. package multimap

    A multimap. This is a simple implementation of a multimap, based on Data.Map.

    • v1.1 ! had its arguments flipped. Fixed. Also added fromMap.
    • v1.2 Added Data.SetMap, renamed Multimap to Data.MultiMap. Fixed the type of delete. Derive instances for Data and Typeable.
    • v1.2.1 Fixed typos in the documentation.

  3. package mutable-containers

    Abstactions and concrete implementations of mutable containers See docs and README at http://www.stackage.org/package/mutable-containers

  4. package mysql-simple

    A mid-level MySQL client library. A mid-level client library for the MySQL database, intended to be fast and easy to use. Important licensing note: This library is BSD-licensed under the terms of the MySQL FOSS License Exception http://www.mysql.com/about/legal/licensing/foss-exception/. Since this library links against the GPL-licensed mysqlclient library, a non-open-source application that uses it may be subject to the terms of the GPL.

  5. package network-byte-order

    Network byte order utilities Peek and poke functions for network byte order.

  6. package network-info

    Access the local computer's basic network configuration This library provides simple read-only access to the local computer's networking configuration. It is currently capable of getting a list of all the network interfaces and their respective IPv4, IPv6 and MAC addresses. network-info has been tested and is known to work on Ubuntu, FreeBSD, NetBSD, Mac OS and Windows.

  7. package network-run

    Simple network runner library Simple functions to run network clients and servers.

  8. package newtype-generics

    A typeclass and set of functions for working with newtypes Per Conor McBride, the Newtype typeclass represents the packing and unpacking of a newtype, and allows you to operate under that newtype with functions such as ala. Generics support was added in version 0.4, making this package a full replacement for the original newtype package, and a better alternative to newtype-th.

  9. package nonempty-containers

    Non-empty variants of containers data types, with full API Efficient and optimized non-empty versions of types from containers. Inspired by non-empty-containers library, except attempting a more faithful port (with under-the-hood optimizations) of the full containers API. Also contains a convenient typeclass abstraction for converting betwewen non-empty and possibly-empty variants. See README.md for more information.

  10. package numhask-space

    Numerical spaces. numhask-space provides support for spaces where space is defined as a set of numbers with a lower and upper bound.

    Usage

    >>> {-# LANGUAGE RebindableSyntax #-}
    
    >>> import NumHask.Prelude
    
    >>> import NumHask.Space
    

Page 68 of many | Previous | Next