Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
vformat Text.Format.TH -
vformat Text.Format.TH A QuasiQuoter for Format with which you can write multi-line Format. Note: ">>>" after "[formatQQ|" means starting from the next line, "<<<" before "|]" means ending from the previous line.
Example
>>> :set -XTemplateHaskell >>> :set -XQuasiQuotes >>> import Text.Format >>> import Text.Format.TH >>> :{ fmt1 :: Format fmt1 = [formatQQ|>>> first line {hi} newline {words} last line {bye} <<<|] fmt2 :: Format fmt2 = [formatQQ|first line {hi} newline {words} last line {bye}|] fmt3 :: Format fmt3 = "first line {hi}\nnewline {words}\nlast line {bye}" :} >>> format fmt1 ("hi" := "hi") ("words" := "say something") ("bye" := "bye") "first line hi\nnewline say something\nlast line bye" >>> format fmt2 ("hi" := "hi") ("words" := "say something") ("bye" := "bye") "first line hi\nnewline say something\nlast line bye" >>> format fmt3 ("hi" := "hi") ("words" := "say something") ("bye" := "bye") "first line hi\nnewline say something\nlast line bye" formatPathSegments :: Site url a -> url -> ([Text], [(Text, Maybe Text)])web-routes Web.Routes.Site This function must be the inverse of parsePathSegments.
form :: Mod c -> View c () -> View c ()web-view Web.View No documentation available.
form :: Mod c -> View c () -> View c ()web-view Web.View.Element No documentation available.
-
what4 What4.Expr.VarIdentification Expressions appearing in the problem as existentially quantified when the problem is expressed in negation normal form. This is a map from the existential quantifier element to the info.
-
what4 What4.Interface forallPred sym v e returns an expression that represents forall v . e. Throws a user error if bound var has already been used in a quantifier.
forall_ :: [(Text, Sort)] -> Term -> Termwhat4 What4.Protocol.SMTLib2.Syntax forall_ vars t denotes a predicate that holds if t for every valuation of the variables in vars.
forallExpr :: SMTWriter h => [(Text, Some TypeMap)] -> Term h -> Term hwhat4 What4.Protocol.SMTWriter Create a forall expression
forgetModelAndCore :: SatResult a b -> SatResult () ()what4 What4.SatResult No documentation available.