Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. settingReaders :: Setting a -> ![Reader a]

    opt-env-conf OptEnvConf.Setting

    Which readers should be tried to parse a value from a string

  2. PANDOC_READER_OPTIONS :: ReaderOptions -> Global

    pandoc-lua-engine Text.Pandoc.Lua

    No documentation available.

  3. captionReader :: Format -> Text -> Either PandocError [Inline]

    pandoc-plot Text.Pandoc.Filter.Plot.Internal

    Reader a caption, based on input document format

  4. newtype DistinctWhichReader (m :: Type -> Type) r a

    parameterized Parameterized.Control.Monad.Trans.Reader

    Given a Reader that accepts Which a, and another Reader that accepts Which b make a reader that accepts Which (Append a b) and only run one of the readers for the correct Which type, with a compile-time contraint that the types in Which a are distinct from the type in Which b The advantage of DistinctWhichReader over OverlappingWhichReader is that pappend doesn't require the inner monad m to be an Alternative. NB. PEmpty still requires Alternative but you don't need to be an instance of PEmpty (analogous to Semigroup)

  5. DistinctWhichReader :: ReaderT r m a -> DistinctWhichReader (m :: Type -> Type) r a

    parameterized Parameterized.Control.Monad.Trans.Reader

    No documentation available.

  6. newtype ManyReader (m :: Type -> Type) r a

    parameterized Parameterized.Control.Monad.Trans.Reader

    Given a Reader that accepts Many a, and another Reader that accepts Many b make a reader that accepts Many (AppendUnique a b) with the compile time constraint that all the types in (AppendUnique a b) are distinct.

  7. ManyReader :: ReaderT r m a -> ManyReader (m :: Type -> Type) r a

    parameterized Parameterized.Control.Monad.Trans.Reader

    No documentation available.

  8. newtype OverlappingWhichReader (m :: Type -> Type) r a

    parameterized Parameterized.Control.Monad.Trans.Reader

    Given a Reader that accepts Which a, and another Reader that accepts Which b make a reader that accepts Which (AppendUnique a b) and runs both readers if possible, where the types in Which a and Which b may overlap, but with the compile time constraint that all the types in (AppendUnique a b) are distinct.

  9. OverlappingWhichReader :: ReaderT r m a -> OverlappingWhichReader (m :: Type -> Type) r a

    parameterized Parameterized.Control.Monad.Trans.Reader

    No documentation available.

  10. runDistinctWhichReader :: DistinctWhichReader (m :: Type -> Type) r a -> ReaderT r m a

    parameterized Parameterized.Control.Monad.Trans.Reader

    No documentation available.

Page 788 of many | Previous | Next