Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- newtype Array1 a = Array1 [a]
- unArray1 :: Array1 a -> [a]
- newtype CompositeArray1 a = CompositeArray1 [a]
- unCompositeArray1 :: CompositeArray1 a -> [a]
- newtype Array2 a = Array2 [[a]]
- unArray2 :: Array2 a -> [[a]]
- newtype CompositeArray2 a = CompositeArray2 [[a]]
- unCompositeArray2 :: CompositeArray2 a -> [[a]]
Array1
One dimensional array of non-composite elements.
Array1 [a] |
Instances
Functor Array1 Source # | |
Eq a => Eq (Array1 a) Source # | |
Ord a => Ord (Array1 a) Source # | |
Defined in Database.PostgreSQL.PQTypes.Array | |
Show a => Show (Array1 a) Source # | |
PQFormat t => PQFormat (Array1 t) Source # | |
Defined in Database.PostgreSQL.PQTypes.Array | |
FromSQL t => FromSQL (Array1 t) Source # | |
ToSQL t => ToSQL (Array1 t) Source # | |
type PQBase (Array1 t) Source # | |
Defined in Database.PostgreSQL.PQTypes.Array | |
type PQDest (Array1 t) Source # | |
Defined in Database.PostgreSQL.PQTypes.Array |
CompositeArray1
newtype CompositeArray1 a Source #
One dimensional array of composite elements.
CompositeArray1 [a] |
Instances
unCompositeArray1 :: CompositeArray1 a -> [a] Source #
Extract list of elements from CompositeArray1
.
Array2
Two dimensional array of non-composite elements.
Array2 [[a]] |
Instances
Functor Array2 Source # | |
Eq a => Eq (Array2 a) Source # | |
Ord a => Ord (Array2 a) Source # | |
Defined in Database.PostgreSQL.PQTypes.Array | |
Show a => Show (Array2 a) Source # | |
PQFormat t => PQFormat (Array2 t) Source # | |
Defined in Database.PostgreSQL.PQTypes.Array | |
FromSQL t => FromSQL (Array2 t) Source # | |
ToSQL t => ToSQL (Array2 t) Source # | |
type PQBase (Array2 t) Source # | |
Defined in Database.PostgreSQL.PQTypes.Array | |
type PQDest (Array2 t) Source # | |
Defined in Database.PostgreSQL.PQTypes.Array |
CompositeArray2
newtype CompositeArray2 a Source #
Two dimensional array of composite elements.
CompositeArray2 [[a]] |
Instances
unCompositeArray2 :: CompositeArray2 a -> [[a]] Source #
Extract list of elements from CompositeArray2
.