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.
showTree :: Show a => Set a -> Stringcontainers Data.Set.Internal Show the tree that implements the set. The tree is shown in a compressed, hanging format.
showTreeWith :: Show a => Bool -> Bool -> Set a -> Stringcontainers 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
showDefaultValue :: IsOption v => v -> Maybe Stringtasty 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.
showGregorian :: Day -> Stringtime Data.Time.Calendar Show in ISO 8601 format (yyyy-mm-dd)
-
time Data.Time.Calendar.Julian Show in ISO 8601 format (yyyy-mm-dd)
showJulianYearAndDay :: Day -> Stringtime Data.Time.Calendar.Julian Show in proleptic Julian year and day format (yyyy-ddd)
showOrdinalDate :: Day -> Stringtime Data.Time.Calendar.OrdinalDate Show in ISO 8601 Ordinal Date format (yyyy-ddd)
-
time Data.Time.Calendar.WeekDate Show in ISO 8601 Week Date format as yyyy-Www-d (e.g. "2006-W46-3").
showPaddedFixed :: HasResolution a => PadOption -> PadOption -> Fixed a -> Stringtime Data.Time.Format.Internal No documentation available.
showPaddedFixedFraction :: HasResolution a => PadOption -> Fixed a -> Stringtime Data.Time.Format.Internal No documentation available.