Hoogle Search
Within LTS Haskell 24.48 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
formatRealFloat :: RealFloat a => a -> Formattervformat Text.Format Formatter for RealFloat values
formatString :: String -> Formattervformat Text.Format Formatter for string values
formatWord :: (Integral a, Bounded a) => a -> Formattervformat Text.Format Formatter for Word values
-
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.