Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. package ip

    Library for IP and MAC addresses The ip package provides types and functions for dealing with IPv4 addresses, CIDR blocks, and MAC addresses. We provide instances for typeclasses found in commonly used packages like aeson, vector, and hashable. We also provide Parsers for working with attoparsec. . Notably, this package does not overload functions by introducing any typeclasses of its own. Neither does it prefix functions with the name of the type that they work on. Instead, functions of the same name are exported by several different modules, and it is expected that end users disambiguate by importing these modules qualified. . The only module intended to be imported unqualified is Net.Types. The types in this package should not conflict with the types in any other commonly used packages. . The following packages are intended to be used with this package: . * `yesod-ip`: Provides orphan instances needed to work with yesod and persistent. Also, provides a `yesod-form` helper.

  2. package iso8601-time

    Convert to/from the ISO 8601 time format Conversion functions between Haskell time types and the ISO 8601 format, which is often used for printing times, e.g. JavaScript's new Date().toISOString().

  3. package js-jquery

    Obtain minified jQuery code This package bundles the minified jQuery code into a Haskell package, so it can be depended upon by Cabal packages. The first three components of the version number match the upstream jQuery version. The package is designed to meet the redistribution requirements of downstream users (e.g. Debian).

  4. package json-spec

    Type-level JSON specification See the README at: https://github.com/owensmurray/json-spec#json-spec

  5. package keys

    Keyed functors and containers This package provides a bunch of ad hoc classes for accessing parts of a container. In practice this package is largely subsumed by the lens package, but it is maintained for now as it has much simpler dependencies.

  6. package ki

    A lightweight structured concurrency library A lightweight structured concurrency library. For a variant of this API generalized to MonadUnliftIO, see ki-unlifted. Remember to link your program with -threaded to use the threaded runtime!

  7. package lsp-types

    Haskell library for the Microsoft Language Server Protocol, data types An implementation of the types to allow language implementors to support the Language Server Protocol for their specific language.

  8. package lukko

    File locking This package provides access to platform dependent file locking APIs:

    There are alternative file locking packages:
    • GHC.IO.Handle.Lock in base >= 4.10 is good enough for most use cases. However, uses only Handles so these locks cannot be used for intra-process locking. (You should use e.g. MVar in addition).
    • filelock doesn't support OFD locking.
    Lukko means lock in Finnish. Submodules Lukko.OFD, Lukko.Windows etc are available based on following conditions.
    if os(windows)
    cpp-options: -DHAS_WINDOWS_LOCK
    
    elif (os(linux) && flag(ofd-locking))
    cpp-options: -DHAS_OFD_LOCKING
    cpp-options: -DHAS_FLOCK
    
    elif !(os(solaris) || os(aix))
    cpp-options: -DHAS_FLOCK
    
    Lukko.FLock is available on not (Windows or Solaris or AIX). Lukko.NoOp is always available.

  9. package lzma

    LZMA/XZ compression and decompression This package provides a pure interface for compressing and decompressing LZMA (Lempel–Ziv–Markov chain algorithm) streams of data represented as lazy ByteStrings. A monadic incremental interface is provided as well. This package relies on the liblzma C library. The following packages are based on this package and provide API support for popular streaming frameworks:

  10. package markup-parse

    A markup parser. A markup parser and printer, from and to strict bytestrings, optimised for speed.

Page 67 of many | Previous | Next