Hoogle Search

Within LTS Haskell 24.56 (ghc-9.10.3)

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

  1. package kind-apply

    Utilities to work with lists of types This packages reifies the concept of list of types, and application of those to list constructors.

  2. package kind-generics

    Generic programming in GHC style for arbitrary kinds and GADTs. This package provides functionality to extend the data type generic programming functionality in GHC to classes of arbitrary kind, and constructors featuring constraints and existentials, as usually found in GADTs.

  3. package knob

    Memory-backed handles Create memory-backed Handles, referencing virtual files. This is mostly useful for testing Handle-based APIs without having to interact with the filesystem.

    import Data.ByteString (pack)
    import Data.Knob
    import System.IO
    
    main = do
    knob <- newKnob (pack [])
    h <- newFileHandle knob "test.txt" WriteMode
    hPutStrLn h "Hello world!"
    hClose h
    bytes <- Data.Knob.getContents knob
    putStrLn ("Wrote bytes: " ++ show bytes)
    

  4. package koji

    Koji buildsystem XML-RPC API bindings This library provides Haskell bindings to the Koji XML RPC API. Koji is a distributed rpm buildsystem used by Fedora, Centos, Red Hat, and other projects. See https://pagure.io/koji/.

  5. package lackey

    Generate Ruby clients from Servant APIs. Lackey generates Ruby clients from Servant APIs.

  6. package lambdabot-core

    Lambdabot core functionality Lambdabot is an IRC bot written over several years by those on the #haskell IRC channel. Manage plugins, network connections, configurations and much more.

  7. package lame

    A high-level binding to the LAME encoder A high-level binding to the LAME encoder.

  8. package language-avro

    Language definition and parser for AVRO files. Parser for the AVRO language specification, see README.md for more details.

  9. package language-bash

    Parsing and pretty-printing Bash shell scripts A library for parsing, pretty-printing, and manipulating Bash shell scripts.

  10. package language-c-quote

    C/CUDA/OpenCL/Objective-C quasiquoting library. This package provides a general parser for the C language, including most GCC extensions and some CUDA and OpenCL extensions as well as the entire Objective-C language.

Page 210 of many | Previous | Next