Hoogle Search
Within LTS Haskell 24.56 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
base-compat-batteries Data.Semigroup.Compat No documentation available.
class
HasAny (sel :: k) s t a b | s sel -> ageneric-lens Data.Generics.Product.Any No documentation available.
class
AsAny (sel :: k) a s | s sel -> ageneric-lens Data.Generics.Sum.Any Sums that have generic prisms.
textWithoutAny :: Char -> Gen Textgenvalidity-text Data.GenValidity.Text 'textWithoutAny c' generates a Text value that does not contain any c.
textWithoutAnyOf :: String -> Gen Textgenvalidity-text Data.GenValidity.Text 'textWithoutAnyOf c' generates a Text value that does not contain any character in ls.
observeMany :: Int -> Logic a -> [a]logict Control.Monad.Logic Extracts up to a given number of results from a Logic computation.
>>> let nats = pure 0 <|> fmap (+ 1) nats >>> observeMany 5 nats [0,1,2,3,4]
Since Logic is isomorphic to a list, observeMany is analogous to take.observeManyT :: Monad m => Int -> LogicT m a -> m [a]logict Control.Monad.Logic Extracts up to a given number of results from a LogicT computation.
many :: forall s u (m :: Type -> Type) a . ParsecT s u m a -> ParsecT s u m [a]pandoc Text.Pandoc.Parsing many p applies the parser p zero or more times. Returns a list of the returned values of p.
identifier = do{ c <- letter ; cs <- many (alphaNum <|> char '_') ; return (c:cs) }many1 :: forall s u (m :: Type -> Type) a . ParsecT s u m a -> ParsecT s u m [a]pandoc Text.Pandoc.Parsing many1 p applies the parser p one or more times. Returns a list of the returned values of p.
word = many1 letter
-
pandoc Text.Pandoc.Parsing Like many1, but packs its result.