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. AnotherShowFlags :: Int -> ShowFlags

    gi-pango GI.Pango.Flags

    Catch-all for unknown values

  2. attrShowNew :: (HasCallStack, MonadIO m) => [ShowFlags] -> m Attribute

    gi-pango GI.Pango.Functions

    Create a new attribute that influences how invisible characters are rendered. Since: 1.44

  3. traceShow :: Show a => a -> b -> b

    protolude Protolude.Debug

    Warning: traceShow remains in code

  4. traceShowId :: Show a => a -> a

    protolude Protolude.Debug

    Warning: traceShowId remains in code

  5. traceShowM :: (Show a, Monad m) => a -> m ()

    protolude Protolude.Debug

    Warning: traceShowM remains in code

  6. package text-show

    Efficient conversion of values into Text text-show offers a replacement for the Show typeclass intended for use with Text instead of Strings. This package was created in the spirit of bytestring-show. For most uses, simply importing TextShow will suffice:

    module Main where
    
    import TextShow
    
    main :: IO ()
    main = printT (Just "Hello, World!")
    
    See also the naming conventions page. Support for automatically deriving TextShow instances can be found in the TextShow.TH and TextShow.Generic modules. text-show only provides instances for data types in the following packages: This policy is in place to keep text-show's dependencies reasonably light. If you need a TextShow instance for a library that is not in this list, it may be covered by the text-show-instances library.

  7. module TextShow

    Efficiently convert from values to Text via Builders. Since: 2

  8. newtype FromStringShow a

    text-show TextShow

    An adapter newtype, suitable for DerivingVia. The TextShow instance for FromStringShow is based on its String Show instance. That is,

    showbPrec p (FromStringShow x) = showsToShowb showsPrec p x
    
    Since: 2

  9. FromStringShow :: a -> FromStringShow a

    text-show TextShow

    No documentation available.

  10. newtype FromStringShow1 (f :: k -> Type) (a :: k)

    text-show TextShow

    An adapter newtype, suitable for DerivingVia. The TextShow1 instance for FromStringShow1 is based on its String Show1 instance. That is,

    liftShowbPrec sp sl p (FromStringShow1 x) =
    showsPrecToShowbPrec (liftShowsPrec (showbPrecToShowsPrec sp)
    (showbToShows         sl))
    p x
    
    Since: 3

Page 260 of many | Previous | Next