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.

  1. manyToks :: P (Tok t) (Tree (Tok t))

    yi-core Yi.Syntax.OnlineTree

    No documentation available.

  2. getAny :: Any -> Bool

    base-compat-batteries Data.Monoid.Compat

    No documentation available.

  3. getAny :: Any -> Bool

    base-compat-batteries Data.Semigroup.Compat

    No documentation available.

  4. class HasAny (sel :: k) s t a b | s sel -> a

    generic-lens Data.Generics.Product.Any

    No documentation available.

  5. class AsAny (sel :: k) a s | s sel -> a

    generic-lens Data.Generics.Sum.Any

    Sums that have generic prisms.

  6. 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.

  7. 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.

  8. 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)
    }
    

  9. 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
    

  10. many1Char :: forall s (m :: Type -> Type) t st . Stream s m t => ParsecT s st m Char -> ParsecT s st m Text

    pandoc Text.Pandoc.Parsing

    Like many1, but packs its result.

Page 137 of many | Previous | Next