Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. data Permutation (m :: Type -> Type) a

    parser-combinators Control.Applicative.Permutations

    An Applicative wrapper-type for constructing permutation parsers.

  2. Postfix :: m (a -> a) -> Operator (m :: Type -> Type) a

    parser-combinators Control.Monad.Combinators.Expr

    Postfix

  3. Prefix :: m (a -> a) -> Operator (m :: Type -> Type) a

    parser-combinators Control.Monad.Combinators.Expr

    Prefix

  4. module Control.Monad.Permutations

    This module specialized the interface to Monad for potential efficiency considerations, depending on the monad the permutations are run over. For a more general interface requiring only Applicative, and for more complete documentation, see the Control.Applicative.Permutations module.

  5. data Permutation (m :: Type -> Type) a

    parser-combinators Control.Monad.Permutations

    An Applicative wrapper-type for constructing permutation parsers.

  6. class Alternative m => Parsing (m :: Type -> Type)

    parsers Text.Parser.Combinators

    Additional functionality needed to describe parsers independent of input type.

  7. Postfix :: m (a -> a) -> Operator (m :: Type -> Type) a

    parsers Text.Parser.Expression

    No documentation available.

  8. Prefix :: m (a -> a) -> Operator (m :: Type -> Type) a

    parsers Text.Parser.Expression

    No documentation available.

  9. module Text.Parser.Permutation

    This module implements permutation parsers. The algorithm is described in: Parsing Permutation Phrases, by Arthur Baars, Andres Loh and Doaitse Swierstra. Published as a functional pearl at the Haskell Workshop 2001.

  10. data Permutation (m :: Type -> Type) a

    parsers Text.Parser.Permutation

    The type Permutation m a denotes a permutation parser that, when converted by the permute function, parses using the base parsing monad m and returns a value of type a on success. Normally, a permutation parser is first build with special operators like (<||>) and than transformed into a normal parser using permute.

Page 266 of many | Previous | Next