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. module Text.Mustache.Parser

    Megaparsec parser for Mustache templates. You don't usually need to import the module, because Text.Mustache re-exports everything you may need, import that module instead.

  2. newtype PName

    stache Text.Mustache.Type

    Identifier for partials. Note that with the OverloadedStrings extension you can use just string literals to create values of this type.

  3. PName :: Text -> PName

    stache Text.Mustache.Type

    No documentation available.

  4. Partial :: PName -> Maybe Pos -> Node

    stache Text.Mustache.Type

    Partial with indentation level (Nothing means it was inlined)

  5. newtype Peek a

    store-core Data.Store.Core

    Peek actions are useful for building sequential deserializers. They are actions which read from memory and construct values from it. The Applicative and Monad instances make it easy to chain these together to get more complicated deserializers. This machinery keeps track of the current Ptr and end-of-buffer Ptr.

  6. Peek :: (PeekState -> Ptr Word8 -> IO (PeekResult a)) -> Peek a

    store-core Data.Store.Core

    No documentation available.

  7. data PeekException

    store-core Data.Store.Core

    Exception thrown while running peek. Note that other types of exceptions can also be thrown. Invocations of fail in the Poke monad causes this exception to be thrown. PeekException is thrown when the data being decoded is invalid.

  8. PeekException :: Offset -> Text -> PeekException

    store-core Data.Store.Core

    No documentation available.

  9. data PeekResult a

    store-core Data.Store.Core

    A result of a Peek action containing the current Ptr and a return value.

  10. PeekResult :: {-# UNPACK #-} !Ptr Word8 -> a -> PeekResult a

    store-core Data.Store.Core

    No documentation available.

Page 1053 of many | Previous | Next