gnuplot-0.5.5.3: 2D and 3D plots using gnuplot

Safe HaskellSafe
LanguageHaskell98

Graphics.Gnuplot.Value.Tuple

Description

Provide a class that renders multiple Haskell values in a text form that is accessible by gnuplot.

Maybe we add a method for the binary interface to gnuplot later.

Synopsis

Documentation

class C a where #

Minimal complete definition

text

Methods

text :: a -> [ShowS] #

For values that are also in Atom class, text must generate a singleton list.

columnCount :: ColumnCount a #

It must hold ColumnCount (length (text x)) == columnCount.

Instances
C Double # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Float # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Int # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Int8 # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Int16 # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Int32 # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Int64 # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Integer # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Word8 # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Word16 # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Word32 # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Word64 # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C UTCTime # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

C Day # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

Integral a => C (Ratio a) # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

Methods

text :: Ratio a -> [ShowS] #

columnCount :: ColumnCount (Ratio a) #

(C a, C b) => C (a, b) # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

Methods

text :: (a, b) -> [ShowS] #

columnCount :: ColumnCount (a, b) #

(C a, C b, C c) => C (a, b, c) # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

Methods

text :: (a, b, c) -> [ShowS] #

columnCount :: ColumnCount (a, b, c) #

(C a, C b, C c, C d) => C (a, b, c, d) # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

Methods

text :: (a, b, c, d) -> [ShowS] #

columnCount :: ColumnCount (a, b, c, d) #

newtype ColumnCount a #

Count numbers of gnuplot data columns for the respective type.

Somehow a writer monad with respect to Sum monoid without material monadic result.

Cf. ColumnSet module.

Constructors

ColumnCount Int 
Instances
Eq (ColumnCount a) # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

Ord (ColumnCount a) # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple

Show (ColumnCount a) # 
Instance details

Defined in Graphics.Gnuplot.Value.Tuple