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.
AnotherShowFlags :: Int -> ShowFlagsgi-pango GI.Pango.Flags Catch-all for unknown values
attrShowNew :: (HasCallStack, MonadIO m) => [ShowFlags] -> m Attributegi-pango GI.Pango.Functions Create a new attribute that influences how invisible characters are rendered. Since: 1.44
traceShow :: Show a => a -> b -> bprotolude Protolude.Debug Warning: traceShow remains in code
traceShowId :: Show a => a -> aprotolude Protolude.Debug Warning: traceShowId remains in code
traceShowM :: (Show a, Monad m) => a -> m ()protolude Protolude.Debug Warning: traceShowM remains in code
-
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. -
Efficiently convert from values to Text via Builders. Since: 2
-
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 FromStringShow :: a -> FromStringShow atext-show TextShow No documentation available.
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