sdp-0.2.1.1: Simple Data Processing
Copyright(c) Andrey Mulik 2019
LicenseBSD-style
Maintainerwork.a.mulik@gmail.com
Portabilityportable
Safe HaskellSafe
LanguageHaskell2010

Text.Show.SDP

Description

Text.Show.SDP provides common ShowS stuff.

Synopsis

Common show templates

assocsPrec :: (Indexed v i e, Show i, Show e) => String -> Int -> v -> ShowS Source #

assocsPrec is showsPrec template.

showsRaw :: Show e => Int -> [e] -> ShowS Source #

showsRaw is a primitive list-to-string conversion pattern.

Note that attempting to parse the resulting string with standard ReadS-based functions will cause an error (ambiguous parse). To properly parse a string, use the readRawSequence function from the SDP.Text.Read module.

showsRawLinear :: (Linear l e, Show e) => Int -> l -> ShowS Source #

Just showsRaw version for Linear.