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. ForkEvent :: HookRepository -> HookRepository -> HookUser -> ForkEvent

    github-webhooks GitHub.Data.Webhooks.Events

    No documentation available.

  2. pattern ForallTerm :: forall r t . () => (r ~ Bool, SupportedNonFuncPrim t) => TypedSymbol 'ConstantKind t -> Term Bool -> Term r

    grisette Grisette.Internal.SymPrim.Prim.Internal.Term

    Pattern synonym for ForallTerm'. Note that using this pattern to construct a Term will do term simplification.

  3. ForallTerm' :: forall t1 . {-# UNPACK #-} !CachedInfo -> !TypedSymbol 'ConstantKind t1 -> !Term Bool -> Term Bool

    grisette Grisette.Internal.SymPrim.Prim.Internal.Term

    No documentation available.

  4. pattern ForallTerm :: forall r t . () => (r ~ Bool, SupportedNonFuncPrim t) => TypedSymbol 'ConstantKind t -> Term Bool -> Term r

    grisette Grisette.SymPrim

    Pattern synonym for ForallTerm'. Note that using this pattern to construct a Term will do term simplification.

  5. pattern ForExp :: CallConv -> Maybe String -> Name -> Type -> Decl

    haskell-src-exts-simple Language.Haskell.Exts.Simple.Syntax

    No documentation available.

  6. pattern ForImp :: CallConv -> Maybe Safety -> Maybe String -> Name -> Type -> Decl

    haskell-src-exts-simple Language.Haskell.Exts.Simple.Syntax

    No documentation available.

  7. module Text.Format

    Format string with named args

    -- Named args
    "My name is {name}, I am {age} years old" ~~ ("name" ~% "Joe") ~~ ("age" ~% 24) ≡ "My name is Joe, I am 24 years old"
    -- Arg can have default value
    "{var:x} = {val:10}" ~~ ("var" ~% y) ≡ "y = 10"
    -- Numeric position can be used
    "{0} {1} {0}" ~~ "foo" ~~ "bar" ≡ "foo bar foo"
    -- Positions can be omitted
    "{} {}" ~~ "foo" ~~ 10 ≡ "foo 10"
    -- Double braces to escape them
    "{} and {{}}" ~~ 10 ≡ "10 and {}"
    

  8. data Format

    hformat Text.Format

    No documentation available.

  9. Format :: String -> [FormatArg] -> Format

    hformat Text.Format

    No documentation available.

  10. data FormatArg

    hformat Text.Format

    No documentation available.

Page 330 of many | Previous | Next