List package:text-show

Exports showbListWith, showtListWith, and showtlListWith, and TextShow instances for lists.
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
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
Converts a list of values into a Builder in which the values are surrounded by square brackets and each value is separated by a comma. The function argument controls how each element is shown. showbListWith showb is the default implementation of showbList save for a few special cases (e.g., String). Since: 2
Converts a list of values into a strict Text in which the values are surrounded by square brackets and each value is separated by a comma. The function argument controls how each element is shown. Since: 3.4
Converts a list of values into a lazy Text in which the values are surrounded by square brackets and each value is separated by a comma. The function argument controls how each element is shown. Since: 3.4
A Generic implementation of showbList. Since: 2
A Generic implementation of showtList. Since: 2
A Generic implementation of showtlList. Since: 2
Generates a lambda expression which behaves like showbList (without requiring a TextShowClass instance). Since: 2
Generates a lambda expression which behaves like showtList (without requiring a TextShowClass instance). Since: 2
Generates a lambda expression which behaves like showtlList (without requiring a TextShowClass instance). Since: 2