Show1 package:text-show

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 String Show1 instance for FromTextShow1 is based on its TextShow1 instance. That is,
liftShowsPrec sp sl p (FromTextShow1 x) =
showbPrecToShowsPrec (liftShowbPrec (showsPrecToShowbPrec sp)
(showsToShowb         sl))
p x
Since: 3
Generates a TextShow1 instance declaration for the given data type or data family instance. Since: 2
Like deriveTextShow1, but takes an Options argument. Since: 3.4