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.
-
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.
-
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.
-
stache Text.Mustache.Type No documentation available.
Partial :: PName -> Maybe Pos -> Nodestache Text.Mustache.Type Partial with indentation level (Nothing means it was inlined)
-
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.
Peek :: (PeekState -> Ptr Word8 -> IO (PeekResult a)) -> Peek astore-core Data.Store.Core No documentation available.
-
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.
PeekException :: Offset -> Text -> PeekExceptionstore-core Data.Store.Core No documentation available.
-
store-core Data.Store.Core A result of a Peek action containing the current Ptr and a return value.
PeekResult :: {-# UNPACK #-} !Ptr Word8 -> a -> PeekResult astore-core Data.Store.Core No documentation available.