Module

Data.Show

Package
purescript-prelude
Repository
purescript/purescript-prelude

#Show Source

class Show a  where

The 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 Type -> Row Type -> Constraintclass ShowRecordFields rowlist row  where

A class for records where all fields have Show instances, used to implement the Show instance for records.

Members

Instances