Frames-0.7.0: Data frames For working with tabular data files

Safe HaskellSafe
LanguageHaskell2010

Frames.ShowCSV

Synopsis

Documentation

class ShowCSV a where Source #

Control the way values of a type are printed when serializing to a CSV stream.

Minimal complete definition

Nothing

Methods

showCSV :: a -> Text Source #

showCSV :: Show a => a -> Text Source #

Instances
ShowCSV Bool Source # 
Instance details

Defined in Frames.ShowCSV

Methods

showCSV :: Bool -> Text Source #

ShowCSV Double Source # 
Instance details

Defined in Frames.ShowCSV

Methods

showCSV :: Double -> Text Source #

ShowCSV Int Source # 
Instance details

Defined in Frames.ShowCSV

Methods

showCSV :: Int -> Text Source #

ShowCSV Text Source # 
Instance details

Defined in Frames.ShowCSV

Methods

showCSV :: Text -> Text Source #