Module
Data.Show 
- Package
 - purescript-prelude
 - Repository
 - purescript/purescript-prelude
 
#Show Source
class Show a  whereThe Show type class represents those types which can be converted into
a human-readable String representation.
While not required, it is recommended that for any expression x, the
string show x be executable PureScript code which evaluates to the same
value as the expression x.
Members
Instances
#ShowRecordFields Source
class ShowRecordFields rowlist row  whereA class for records where all fields have Show instances, used to
implement the Show instance for records.
Members
showRecordFields :: RLProxy rowlist -> Record row -> Array String
Instances
ShowRecordFields Nil row(IsSymbol key, ShowRecordFields rowlistTail row, Show focus) => ShowRecordFields (Cons key focus rowlistTail) row
- Modules
 - Control.
Applicative  - Control.
Apply  - Control.
Bind  - Control.
Category  - Control.
Monad  - Control.
Semigroupoid  - Data.
Boolean  - Data.
BooleanAlgebra  - Data.
Bounded  - Data.
CommutativeRing  - Data.
DivisionRing  - Data.
Eq  - Data.
EuclideanRing  - Data.
Field  - Data.
Function  - Data.
Functor  - Data.
HeytingAlgebra  - Data.
Monoid  - Data.
Monoid. Additive  - Data.
Monoid. Conj  - Data.
Monoid. Disj  - Data.
Monoid. Dual  - Data.
Monoid. Endo  - Data.
Monoid. Multiplicative  - Data.
NaturalTransformation  - Data.
Ord  - Data.
Ord. Unsafe  - Data.
Ordering  - Data.
Ring  - Data.
Semigroup  - Data.
Semigroup. First  - Data.
Semigroup. Last  - Data.
Semiring  - Data.
Show  - Data.
Symbol  - Data.
Unit  - Data.
Void  - Prelude
 - Record.
Unsafe  - Type.
Data. Row  - Type.
Data. RowList