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.
-
numtype-dk Numeric.NumType.DK.Integers No documentation available.
-
numtype-dk Numeric.NumType.DK.Integers No documentation available.
-
numtype-dk Numeric.NumType.DK.Integers No documentation available.
type family
Pred (i :: TypeInt) :: TypeIntnumtype-dk Numeric.NumType.DK.Integers No documentation available.
module Text.Pandoc.Lua.Marshal.
Pandoc Marshaling/unmarshaling functions of Pandoc values.
-
parsec-class Text.Parsec.Class The abstract data type ParseError represents parse errors. It provides the source position (SourcePos) of the error and a list of error messages (Message). A ParseError can be returned by the function parse. ParseError is an instance of the Show and Eq classes.
type
Parsec s u = ParsecT s u Identityparsec-class Text.Parsec.Class No documentation available.
data
ParsecT s u (m :: Type -> Type) aparsec-class Text.Parsec.Class ParserT monad transformer and Parser type ParsecT s u m a is a parser with stream type s, user state type u, underlying monad m and return type a. Parsec is strict in the user state. If this is undesirable, simply use a data type like data Box a = Box a and the state type Box YourStateType to add a level of indirection.
-
Partial orders
-
partialord Data.PartialOrd A typeclass expressing partially ordered types: any two elements are related by a PartialOrdering. In some cases leq can be quicker to run than compare. The provided implementations such as `PartialOrd (a,b)` take advantage of this.