Hoogle Search

Within LTS Haskell 24.57 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. fromJSValueManyWithUpdate :: (MonadReader JSValue m, FromJSValueWithUpdate a, MatchWithJSValue a) => [a] -> m (Maybe [a])

    fields-json Text.JSON.FromJSValue

    Runs parser on each element of underlying json. Returns Just iff JSON is an array. Note: This method has quadratic complexity. It is better to write less general matching algorithms that use Maps.

  2. many :: P s a -> P s [a]

    frisby Text.Parsers.Frisby

    Parse many of something. Behaves like * in regexes. This eats as much as it possibly can, if you want a minimal much rule, then use manyUntil which stops when a.

  3. many1 :: P s a -> P s [a]

    frisby Text.Parsers.Frisby

    Match one or more of something via maximal munch rule.

  4. manyUntil :: P s b -> P s a -> PM s (P s [a])

    frisby Text.Parsers.Frisby

    Parse many of something via the minimal munch rule. behaves like *? in perl regexes. The final item is not consumed.

  5. nameSetAny :: (TyCon -> Bool) -> TyConSet -> Bool

    ghc-lib GHC.Core.TyCon.Set

    No documentation available.

  6. matchAny :: Graph gr => gr a b -> GDecomp gr a b

    ghc-lib GHC.Data.Graph.Inductive.Graph

    Decompose a graph into the Context for an arbitrarily-chosen Node and the remaining Graph.

  7. pattern ManyTy :: Mult

    ghc-lib GHC.Plugins

    No documentation available.

  8. isManyTy :: Mult -> Bool

    ghc-lib GHC.Plugins

    No documentation available.

  9. mkVisFunTyMany :: HasDebugCallStack => Type -> Type -> Type

    ghc-lib GHC.Plugins

    Make nested arrow types | Special, common, case: Arrow type with mult Many

  10. mkVisFunTysMany :: [Type] -> Type -> Type

    ghc-lib GHC.Plugins

    No documentation available.

Page 256 of many | Previous | Next