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.

  1. data Format r a

    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"
    

  2. module Formatting.Formatters

    Formatting functions.

  3. newtype Format r a

    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"
    

  4. Format :: ((Builder -> r) -> a) -> Format r a

    formatting Formatting.Internal

    No documentation available.

  5. module Text.Pandoc.Format

    Handling of format specifiers for input and output.

  6. data Format

    postgresql-libpq Database.PostgreSQL.LibPQ

    No documentation available.

  7. class Formatter f

    sandwich Test.Sandwich.Options

    No documentation available.

  8. FormFieldNotFound :: Text -> ScottyException

    scotty Web.Scotty

    No documentation available.

  9. FormFieldNotFound :: Text -> ScottyException

    scotty Web.Scotty.Internal.Types

    No documentation available.

  10. FormFieldNotFound :: Text -> ScottyException

    scotty Web.Scotty.Trans

    No documentation available.

Page 279 of many | Previous | Next