Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. 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

  2. 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

  3. 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

  4. 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

  5. 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

  6. 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

  7. showbName :: Name -> Builder

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

    Convert a Name to a Builder. Since: 2

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

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

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

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

    tidal Sound.Tidal.Boot

    No documentation available.

  10. showStateful :: ControlPattern -> String

    tidal Sound.Tidal.Boot

    No documentation available.

Page 196 of many | Previous | Next