Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. showTree :: Show a => Set a -> String

    containers Data.Set.Internal

    Show the tree that implements the set. The tree is shown in a compressed, hanging format.

  2. showTreeWith :: Show a => Bool -> Bool -> Set a -> String

    containers Data.Set.Internal

    The expression (showTreeWith hang wide map) shows the tree that implements the set. If hang is True, a hanging tree is shown otherwise a rotated tree is shown. If wide is True, an extra wide version is shown.

    Set> putStrLn $ showTreeWith True False $ fromDistinctAscList [1..5]
    4
    +--2
    |  +--1
    |  +--3
    +--5
    
    Set> putStrLn $ showTreeWith True True $ fromDistinctAscList [1..5]
    4
    |
    +--2
    |  |
    |  +--1
    |  |
    |  +--3
    |
    +--5
    
    Set> putStrLn $ showTreeWith False True $ fromDistinctAscList [1..5]
    +--5
    |
    4
    |
    |  +--3
    |  |
    +--2
    |
    +--1
    

  3. showDefaultValue :: IsOption v => v -> Maybe String

    tasty Test.Tasty.Options

    How a defaultValue should be displayed in the help string. Nothing (the default implementation) will result in nothing being displayed, while Just def will result in def being advertised as the default in the help string.

  4. showGregorian :: Day -> String

    time Data.Time.Calendar

    Show in ISO 8601 format (yyyy-mm-dd)

  5. showJulian :: Day -> String

    time Data.Time.Calendar.Julian

    Show in ISO 8601 format (yyyy-mm-dd)

  6. showJulianYearAndDay :: Day -> String

    time Data.Time.Calendar.Julian

    Show in proleptic Julian year and day format (yyyy-ddd)

  7. showOrdinalDate :: Day -> String

    time Data.Time.Calendar.OrdinalDate

    Show in ISO 8601 Ordinal Date format (yyyy-ddd)

  8. showWeekDate :: Day -> String

    time Data.Time.Calendar.WeekDate

    Show in ISO 8601 Week Date format as yyyy-Www-d (e.g. "2006-W46-3").

  9. showPaddedFixed :: HasResolution a => PadOption -> PadOption -> Fixed a -> String

    time Data.Time.Format.Internal

    No documentation available.

  10. showPaddedFixedFraction :: HasResolution a => PadOption -> Fixed a -> String

    time Data.Time.Format.Internal

    No documentation available.

Page 56 of many | Previous | Next