Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. showbPrec :: TextShow a => Int -> a -> Builder

    text-show-instances TextShow.Instances

    Convert a value to a Builder with the given predence. Since: 2

  2. showt :: TextShow a => a -> Text

    text-show-instances TextShow.Instances

    Converts a value to a strict Text. This can be overridden for efficiency, but it should satisfy:

    showt = showtPrec 0
    showt = toStrict . showtl
    
    The first equation is the default definition of showt. Since: 3

  3. showtList :: TextShow a => [a] -> Text

    text-show-instances TextShow.Instances

    Converts a list of values to a strict Text. This can be overridden for efficiency, but it should satisfy:

    showtList = toStrict . showtlList
    
    Since: 3

  4. showtPrec :: TextShow a => Int -> a -> Text

    text-show-instances TextShow.Instances

    Converts a value to a strict Text with the given precedence. This can be overridden for efficiency, but it should satisfy:

    showtPrec p = toStrict . showtlPrec p
    
    Since: 3

  5. showtl :: TextShow a => a -> Text

    text-show-instances TextShow.Instances

    Converts a value to a lazy Text. This can be overridden for efficiency, but it should satisfy:

    showtl = showtlPrec 0
    showtl = toLazyText . showb
    
    The first equation is the default definition of showtl. Since: 3

  6. showtlList :: TextShow a => [a] -> Text

    text-show-instances TextShow.Instances

    Converts a list of values to a lazy Text. This can be overridden for efficiency, but it should satisfy:

    showtlList = toLazyText . showbList
    
    Since: 3

  7. showtlPrec :: TextShow a => Int -> a -> Text

    text-show-instances TextShow.Instances

    Converts a value to a lazy Text with the given precedence. This can be overridden for efficiency, but it should satisfy:

    showtlPrec p = toLazyText . showbPrec p
    
    Since: 3

  8. showbName :: Name -> Builder

    text-show-instances TextShow.Language.Haskell.TH

    Convert a Name to a Builder. Since: 2

  9. showbName' :: NameIs -> Name -> Builder

    text-show-instances TextShow.Language.Haskell.TH

    Convert a Name to a Builder with the given NameIs settings. Since: 2

  10. showAll :: Show a => Arc -> Pattern a -> String

    tidal Sound.Tidal.Boot

    No documentation available.

Page 163 of many | Previous | Next