experimenter-0.1.0.4: Perform scientific experiments stored in a DB, and generate reports.
Safe HaskellNone
LanguageHaskell2010

Experimenter.Eval.Table

Documentation

data Table Source #

Constructors

Table !Row ![Row] 

Instances

Instances details
Eq Table Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

(==) :: Table -> Table -> Bool #

(/=) :: Table -> Table -> Bool #

Show Table Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

showsPrec :: Int -> Table -> ShowS #

show :: Table -> String #

showList :: [Table] -> ShowS #

Generic Table Source # 
Instance details

Defined in Experimenter.Eval.Table

Associated Types

type Rep Table :: Type -> Type #

Methods

from :: Table -> Rep Table x #

to :: Rep Table x -> Table #

NFData Table Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

rnf :: Table -> () #

type Rep Table Source # 
Instance details

Defined in Experimenter.Eval.Table

type Rep Table = D1 ('MetaData "Table" "Experimenter.Eval.Table" "experimenter-0.1.0.4-ECHHYGYK0nQKM3O8FNRP5l" 'False) (C1 ('MetaCons "Table" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Row) :*: S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 [Row])))

newtype Row Source #

Constructors

Row [Cell] 

Instances

Instances details
Eq Row Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

(==) :: Row -> Row -> Bool #

(/=) :: Row -> Row -> Bool #

Show Row Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

showsPrec :: Int -> Row -> ShowS #

show :: Row -> String #

showList :: [Row] -> ShowS #

Generic Row Source # 
Instance details

Defined in Experimenter.Eval.Table

Associated Types

type Rep Row :: Type -> Type #

Methods

from :: Row -> Rep Row x #

to :: Rep Row x -> Row #

NFData Row Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

rnf :: Row -> () #

type Rep Row Source # 
Instance details

Defined in Experimenter.Eval.Table

type Rep Row = D1 ('MetaData "Row" "Experimenter.Eval.Table" "experimenter-0.1.0.4-ECHHYGYK0nQKM3O8FNRP5l" 'True) (C1 ('MetaCons "Row" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 [Cell])))

data Cell Source #

Constructors

CellT !Text 
CellD !Double 
CellL !LaTeX 
CellEmpty 

Instances

Instances details
Eq Cell Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

(==) :: Cell -> Cell -> Bool #

(/=) :: Cell -> Cell -> Bool #

Show Cell Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

showsPrec :: Int -> Cell -> ShowS #

show :: Cell -> String #

showList :: [Cell] -> ShowS #

IsString Cell Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

fromString :: String -> Cell #

Generic Cell Source # 
Instance details

Defined in Experimenter.Eval.Table

Associated Types

type Rep Cell :: Type -> Type #

Methods

from :: Cell -> Rep Cell x #

to :: Rep Cell x -> Cell #

NFData Cell Source # 
Instance details

Defined in Experimenter.Eval.Table

Methods

rnf :: Cell -> () #

type Rep Cell Source # 
Instance details

Defined in Experimenter.Eval.Table

type Rep Cell = D1 ('MetaData "Cell" "Experimenter.Eval.Table" "experimenter-0.1.0.4-ECHHYGYK0nQKM3O8FNRP5l" 'False) ((C1 ('MetaCons "CellT" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Text)) :+: C1 ('MetaCons "CellD" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 Double))) :+: (C1 ('MetaCons "CellL" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 LaTeX)) :+: C1 ('MetaCons "CellEmpty" 'PrefixI 'False) (U1 :: Type -> Type)))