Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
formatting Formatting A formatter. When you construct formatters the first type parameter, r, will remain polymorphic. The second type parameter, a, will change to reflect the types of the data that will be formatted. For example, in
myFormat :: Format r (Text -> Int -> r) myFormat = "Person's name is " % text % ", age is " % hex
the first type parameter remains polymorphic, and the second type parameter is Text -> Int -> r, which indicates that it formats a Text and an Int. When you run the Format, for example with format, you provide the arguments and they will be formatted into a string.> format ("Person's name is " % text % ", age is " % hex) "Dave" 54 "Person's name is Dave, age is 36" -
Formatting functions.
-
formatting Formatting.Internal A formatter. When you construct formatters the first type parameter, r, will remain polymorphic. The second type parameter, a, will change to reflect the types of the data that will be formatted. For example, in
myFormat :: Format r (Text -> Int -> r) myFormat = "Person's name is " % text % ", age is " % hex
the first type parameter remains polymorphic, and the second type parameter is Text -> Int -> r, which indicates that it formats a Text and an Int. When you run the Format, for example with format, you provide the arguments and they will be formatted into a string.> format ("Person's name is " % text % ", age is " % hex) "Dave" 54 "Person's name is Dave, age is 36" Format :: ((Builder -> r) -> a) -> Format r aformatting Formatting.Internal No documentation available.
-
Handling of format specifiers for input and output.
-
postgresql-libpq Database.PostgreSQL.LibPQ No documentation available.
-
sandwich Test.Sandwich.Options No documentation available.
FormFieldNotFound :: Text -> ScottyExceptionscotty Web.Scotty No documentation available.
FormFieldNotFound :: Text -> ScottyExceptionscotty Web.Scotty.Internal.Types No documentation available.
FormFieldNotFound :: Text -> ScottyExceptionscotty Web.Scotty.Trans No documentation available.