Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. showSql :: Default Unpackspec fields fields => Select fields -> Maybe String

    opaleye Opaleye.Sql

    Show the SQL query string generated from the Select. When Nothing is returned it means that the Select returns zero rows. Example type specialization:

    showSql :: Select (Field a, Field b) -> Maybe String
    
    Assuming the makeAdaptorAndInstanceInferrable splice has been run for the product type Foo:
    showSql :: Select (Foo (Field a) (Field b) (Field c)) -> Maybe String
    

  2. showSqlExplicit :: Unpackspec fields b -> Select fields -> Maybe String

    opaleye Opaleye.Sql

    No documentation available.

  3. showSqlUnopt :: Default Unpackspec fields fields => Select fields -> Maybe String

    opaleye Opaleye.Sql

    Show the unoptimized SQL query string generated from the Select.

  4. showSqlUnoptExplicit :: Unpackspec fields b -> Select fields -> Maybe String

    opaleye Opaleye.Sql

    No documentation available.

  5. showSqlType :: IsSqlType sqlType => proxy sqlType -> String

    opaleye Opaleye.SqlTypes

    No documentation available.

  6. showParserABit :: Parser a -> String

    opt-env-conf OptEnvConf.Parser

    No documentation available.

  7. showSettingABit :: Setting a -> ShowS

    opt-env-conf OptEnvConf.Setting

    Show a Setting as much as possible, for debugging

  8. shownExample :: Show a => a -> Builder a

    opt-env-conf OptEnvConf.Setting

    Use Show to show an example. This only makes sense if you use reader auto.

  9. showable :: Show a => a -> Default a

    optima Optima

    Provide a default value with textual representation formed using the implicit Show instance.

  10. showWithBase :: Integral a => Int -> a -> String

    percent-format Text.PercentFormat.Utils

    showWithBase b n returns a string representation of n in base b.

    showWithBase 2 10
    
    "1010" > showWithBase 16 49406 "c0f3" > showWithBase 10 (-1234) "-1234"

Page 188 of many | Previous | Next