Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

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

  1. package streamly-bytestring

    Library for streamly and bytestring interoperation. Please see the README on GitHub at https://github.com/psibi/streamly-bytestring#readme

  2. package streamly-process

    Use OS processes as stream transformation functions Use operating system (OS) commands in Haskell programs as if they were native Haskell functions, by treating their inputs and outputs as Haskell streams. This allows you to write high-level Haskell scripts that can perform tasks similar to shell scripts, but with C-like performance, and with strong safety guarantees, refactorability, and modularity.

  3. package streams

    Various Haskell 2010 stream comonads Various Haskell 2010 stream comonads. * Data.Stream.Future provides a coinductive anti-causal stream, or non-empty ZipList. The comonad provides access to only the tail of the stream. Like a conventional ZipList, this is not a monad.

    data Future a = Last a | a :< Future a
    
    
    
    
    • Data.Stream.Infinite provides a coinductive infinite anti-causal stream. The Comonad provides access to the tail of the stream and the Applicative zips streams together. Unlike Future, infinite stream form a Monad. The monad diagonalizes the Stream, which is consistent with the behavior of the Applicative, and the view of a Stream as a isomorphic to the reader monad from the natural numbers. Being infinite in length, there is no Alternative instance.
    data Stream a = a :< Stream a
    
    
    
    
    
    
    data Zipper a = !Integer :~ (Integer -> a)
    
    • Data.Stream.Supply provides a comonadic supply of unique values, which are generated impurely as the tree is explored.

  4. package strict-lens

    Lenses for types in strict package Lenses for types in strict package.

  5. package strict-tuple

    Strict tuples Strict tuples.

  6. package strict-wrapper

    Lightweight strict types Lightweight, zero-cost, strict versions of basic data types

  7. package stringprep

    Implements the "StringPrep" algorithm Implements the StringPrep algorithm

  8. package strongweak

    Convert between strong and weak representations of types Please see README.md.

  9. package structs

    Strict GC'd imperative object-oriented programming with cheap pointers. This project is an experiment with a small GC'd strict mutable imperative universe with cheap pointers inside of the GHC runtime system.

  10. package stylish-haskell

    Haskell code prettifier A Haskell code prettifier. For more information, see: https://github.com/haskell/stylish-haskell/blob/master/README.markdown

Page 250 of many | Previous | Next