#if __GLASGOW_HASKELL__ >= 701
{-# LANGUAGE Safe #-}#endif
------------------------------------------------------------------------------- |-- Module : Text.PrettyPrint-- Copyright : (c) The University of Glasgow 2001-- License : BSD-style (see the file LICENSE)-- -- Maintainer : David Terei <code@davidterei.com>-- Stability : stable-- Portability : portable---- Provides a collection of pretty printer combinators, a set of API's-- that provides a way to easily print out text in a consistent format-- of your choosing.---- This module should be used as opposed to the 'Text.PrettyPrint.HughesPJ'-- module. Both are equivalent though as this module simply re-exports the-- other.-------------------------------------------------------------------------------moduleText.PrettyPrint(-- * The document typeDoc ,-- * Constructing documents-- ** Converting values into documentschar ,text ,ptext ,sizedText ,zeroWidthText ,int ,integer ,float ,double ,rational ,-- ** Simple derived documentssemi ,comma ,colon ,space ,equals ,lparen ,rparen ,lbrack ,rbrack ,lbrace ,rbrace ,-- ** Wrapping documents in delimitersparens ,brackets ,braces ,quotes ,doubleQuotes ,-- ** Combining documentsempty ,(X.<> ),(<+> ),hcat ,hsep ,($$ ),($+$ ),vcat ,sep ,cat ,fsep ,fcat ,nest ,hang ,punctuate ,-- * Predicates on documentsisEmpty ,-- * Rendering documents-- ** Default renderingrender ,-- ** Rendering with a particular styleStyle (..),style ,renderStyle ,-- ** General renderingfullRender ,Mode (..),TextDetails (..))whereimportText.PrettyPrint.HughesPJ asX

AltStyle によって変換されたページ (->オリジナル) /