Hoogle Search
Within LTS Haskell 24.58 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
template-haskell Language.Haskell.TH Common elements of OpenTypeFamilyD and ClosedTypeFamilyD. By analogy with "head" for type classes and type class instances as defined in Type classes: an exploration of the design space, the TypeFamilyHead is defined to be the elements of the declaration between type family and where.
-
template-haskell Language.Haskell.TH No documentation available.
ppr_tf_head :: TypeFamilyHead -> Doctemplate-haskell Language.Haskell.TH.Ppr No documentation available.
-
template-haskell Language.Haskell.TH.Syntax Common elements of OpenTypeFamilyD and ClosedTypeFamilyD. By analogy with "head" for type classes and type class instances as defined in Type classes: an exploration of the design space, the TypeFamilyHead is defined to be the elements of the declaration between type family and where.
-
template-haskell Language.Haskell.TH.Syntax No documentation available.
-
binary Data.Binary.Get Run the given decoder, but without consuming its input. If the given decoder fails, then so will this function.
lookAheadE :: Get (Either a b) -> Get (Either a b)binary Data.Binary.Get Run the given decoder, and only consume its input if it returns Right. If Left is returned, the input will be unconsumed. If the given decoder fails, then so will this function.
lookAheadM :: Get (Maybe a) -> Get (Maybe a)binary Data.Binary.Get Run the given decoder, and only consume its input if it returns Just. If Nothing is returned, the input will be unconsumed. If the given decoder fails, then so will this function.
-
binary Data.Binary.Get.Internal Run the given decoder, but without consuming its input. If the given decoder fails, then so will this function.
lookAheadE :: Get (Either a b) -> Get (Either a b)binary Data.Binary.Get.Internal Run the given decoder, and only consume its input if it returns Right. If Left is returned, the input will be unconsumed. If the given decoder fails, then so will this function.