ST package:text-show

TextShow instance for strict ST. Since: 2
TextShow instances for CallStack and SrcLoc values. Since: 3.0.1
TextShow instance for StaticPtrInfo. Since: 2
TextShow instance for GCStats. Since: 2
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
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
An adapter newtype, suitable for DerivingVia. The TextShow2 instance for FromStringShow2 is based on its String Show2 instance. That is,
liftShowbPrec2 sp1 sl1 sp2 sl2 p (FromStringShow2 x) =
showsPrecToShowbPrec (liftShowsPrec2 (showbPrecToShowsPrec sp1)
(showbToShows         sl1)
(showbPrecToShowsPrec sp2)
(showbToShows         sl2))
p x
Since: 3
O(1). A Builder taking a String, satisfying Performs replacement on invalid scalar values:
>>> fromString "\55555"
"\65533"
showbList function for an application of the type constructor based on showbPrec and showbList functions for the argument type. The default implementation using standard list syntax is correct for most types. Since: 3
showbList function for an application of the type constructor based on showbPrec and showbList functions for the argument types. The default implementation using standard list syntax is correct for most types. Since: 3
Converts a list of values to a Builder. By default, this is defined as 'showbList = showbListWith showb, but it can be overridden to allow for specialized displaying of lists (e.g., lists of Chars). Since: 2
Convert a ShowS-based show function to a Builder-based one. Since: 3
Converts a list of values to a strict Text. This can be overridden for efficiency, but it should satisfy:
showtList = toStrict . showtlList
Since: 3
Converts a list of values to a lazy Text. This can be overridden for efficiency, but it should satisfy:
showtlList = toLazyText . showbList
Since: 3
Convert a Builder to a String (without surrounding it with double quotes, as show would). Since: 2
TextShow instances for data types in the bytestring library. Since: 2
Convert a String to a Builder (without double quotes). Since: 2
Convert a String to a Builder (surrounded by double quotes). Since: 2
Exports showbListWith, showtListWith, and showtlListWith, and TextShow instances for lists.