Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
ManyReader :: ReaderT r m a -> ManyReader (m :: Type -> Type) r aparameterized Parameterized.Control.Monad.Trans.Reader No documentation available.
runManyReader :: ManyReader (m :: Type -> Type) r a -> ReaderT r m aparameterized Parameterized.Control.Monad.Trans.Reader No documentation available.
newtype
ManyState (m :: Type -> Type) s aparameterized Parameterized.Control.Monad.Trans.State.Strict Given a ManyState that modifies Many a, and another ManyState that modifes Many b make a State that accepts Many (AppendUnique a b) with the compile time constraint that all the types in (AppendUnique a b) are distinct.
ManyState :: StateT s m a -> ManyState (m :: Type -> Type) s aparameterized Parameterized.Control.Monad.Trans.State.Strict No documentation available.
runManyState :: ManyState (m :: Type -> Type) s a -> StateT s m aparameterized Parameterized.Control.Monad.Trans.State.Strict No documentation available.
-
parser-regex Regex.Base A repeating value or a finite list.
foldlMany :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Base Parse many occurences of the given RE. Biased towards matching more. Also see the section "Looping parsers".
foldlMany' :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Base No documentation available.
foldlManyMin :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Base Parse many occurences of the given RE. Minimal, i.e. biased towards matching less.
foldlManyMin' :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Base No documentation available.