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

Safe HaskellNone
LanguageHaskell2010

Frames.Col

Description

Column types

Synopsis

Documentation

newtype s :-> a Source

A column's type includes a textual name and the data type of each element.

Constructors

Col 

Fields

getCol :: a
 

Instances

(KnownSymbol s, Show (f (Col' s a)), ShowRec f rs) => ShowRec f ((:) * ((:->) s a) rs) Source 
Eq a => Eq ((:->) s a) Source 
Floating a => Floating ((:->) s a) Source 
Fractional a => Fractional ((:->) s a) Source 
Num a => Num ((:->) s a) Source 
Ord a => Ord ((:->) s a) Source 
Real a => Real ((:->) s a) Source 
RealFloat a => RealFloat ((:->) s a) Source 
RealFrac a => RealFrac ((:->) s a) Source 
(KnownSymbol s, Show a) => Show ((:->) s a) Source 
Monoid a => Monoid ((:->) s a) Source 
AsVinyl ts => AsVinyl ((:) * ((:->) s t) ts) Source 
(ColumnHeaders cs, KnownSymbol s) => ColumnHeaders ((:) * ((:->) s c) cs) Source 
(MVector (VectorMFor a) a, Vector (VectorFor a) a, RecVec rs) => RecVec ((:) * ((:->) s a) rs) Source 
(Parseable t, ReadRec ts) => ReadRec ((:) * ((:->) s t) ts) Source 

newtype Col' s a Source

Used only for a show instance that parenthesizes the value.

Constructors

Col' (s :-> a) 

Instances

(KnownSymbol s, Show a) => Show (Col' s a) Source 

col' :: a -> Col' s a Source

Helper for making a Col'