Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
unboxedSumBars :: Doc -> SumAlt -> SumArity -> Doctemplate-haskell Language.Haskell.TH.Ppr No documentation available.
UnboxedSumE :: Exp -> SumAlt -> SumArity -> Exptemplate-haskell Language.Haskell.TH.Syntax { (#|e|#) }UnboxedSumP :: Pat -> SumAlt -> SumArity -> Pattemplate-haskell Language.Haskell.TH.Syntax { (#|p|#) }UnboxedSumT :: SumArity -> Typetemplate-haskell Language.Haskell.TH.Syntax (#|#), (#||#), etc.
unboxedSumDataName :: SumAlt -> SumArity -> Nametemplate-haskell Language.Haskell.TH.Syntax Unboxed sum data constructor
unboxedSumTypeName :: SumArity -> Nametemplate-haskell Language.Haskell.TH.Syntax Unboxed sum type constructor
type
Consume s = s -> ByteString -> Either s (ByteString, ByteString)binary Data.Binary.Get.Internal No documentation available.
-
ghc-prim GHC.Prim.Panic Closure introduced by GHC.Stg.Unarise for unused unboxed sum fields. See Note [aBSENT_SUM_FIELD_ERROR_ID] in GHC.Core.Make
asumOf :: Alternative f => Getting (Endo (f a)) s (f a) -> s -> f alens Control.Lens.Combinators The sum of a collection of actions, generalizing concatOf.
>>> asumOf both ("hello","world") "helloworld">>> asumOf each (Nothing, Just "hello", Nothing) Just "hello"
asum ≡ asumOf folded
asumOf :: Alternative f => Getter s (f a) -> s -> f a asumOf :: Alternative f => Fold s (f a) -> s -> f a asumOf :: Alternative f => Lens' s (f a) -> s -> f a asumOf :: Alternative f => Iso' s (f a) -> s -> f a asumOf :: Alternative f => Traversal' s (f a) -> s -> f a asumOf :: Alternative f => Prism' s (f a) -> s -> f a
msumOf :: MonadPlus m => Getting (Endo (m a)) s (m a) -> s -> m alens Control.Lens.Combinators The sum of a collection of actions, generalizing concatOf.
>>> msumOf both ("hello","world") "helloworld">>> msumOf each (Nothing, Just "hello", Nothing) Just "hello"
msum ≡ msumOf folded
msumOf :: MonadPlus m => Getter s (m a) -> s -> m a msumOf :: MonadPlus m => Fold s (m a) -> s -> m a msumOf :: MonadPlus m => Lens' s (m a) -> s -> m a msumOf :: MonadPlus m => Iso' s (m a) -> s -> m a msumOf :: MonadPlus m => Traversal' s (m a) -> s -> m a msumOf :: MonadPlus m => Prism' s (m a) -> s -> m a