Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. shows :: Show a => a -> ShowS

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    equivalent to showsPrec with a precedence of 0.

  2. showsPrec :: Show a => Int -> a -> ShowS

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    Convert a value to a readable String. showsPrec should satisfy the law

    showsPrec d x r ++ s  ==  showsPrec d x (r ++ s)
    
    Derived instances of Read and Show satisfy the following: That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.

  3. showDot :: (Eq v, Hashable v) => (v -> String) -> Graph v e -> String

    reactive-banana Reactive.Banana.Prim.Low.Graph

    Map to a string in graphviz dot file format.

  4. showConstantTermsSQL :: ShowConstantTermsSQL a => a -> [StringSQL]

    relational-query Database.Relational.Arrow

    Deprecated: Use showLiteral instead of this.

  5. showConstantTermsSQL' :: ShowConstantTermsSQL a => a -> DList StringSQL

    relational-query Database.Relational.Arrow

    Deprecated: Use showLiteral' instead of this.

  6. showLiteral :: LiteralSQL a => a -> [StringSQL]

    relational-query Database.Relational.Arrow

    Convert from haskell record to SQL literal row-value.

  7. showLiteral' :: LiteralSQL a => a -> DList StringSQL

    relational-query Database.Relational.Arrow

    No documentation available.

  8. showNum :: (SqlContext c, Num a, IsString b) => Record c a -> Record c b

    relational-query Database.Relational.Arrow

    Unsafely show number into string-like type in records.

  9. showNumMaybe :: (SqlContext c, Num a, IsString b) => Record c (Maybe a) -> Record c (Maybe b)

    relational-query Database.Relational.Arrow

    Unsafely show number into string-like type in records.

  10. showNum :: (SqlContext c, Num a, IsString b) => Record c a -> Record c b

    relational-query Database.Relational.Projectable

    Unsafely show number into string-like type in records.

Page 98 of many | Previous | Next