relational-query-0.9.4.1: Typeful, Modular, Relational, algebraic query engine

Copyright2013-2017 Kei Hibino
LicenseBSD3
Maintainerex8k.hibino@gmail.com
Stabilityexperimental
Portabilityunknown
Safe HaskellNone
LanguageHaskell2010

Database.Relational.Query.Pi.Unsafe

Contents

Description

This module defines typed projection path objects. Contains internal structure and unsafe interfaces.

Synopsis

Projection path

data Pi r0 r1 #

Projection path from type r0 into type r1. This type also indicate key object which type is r1 for record type r0.

Instances

ProjectableApplicative (Pi a) #

Compose projection path Pi which has record result type using applicative style.

Methods

(|*|) :: Pi a (a -> b) -> Pi a a -> Pi a b #

ProjectableFunctor (Pi a) #

Compose seed of projection path Pi which has record result type.

Methods

(|$|) :: ProductConstructor (a -> b) => (a -> b) -> Pi a a -> Pi a b #

Category * Pi # 

Methods

id :: cat a a #

(.) :: cat b c -> cat a b -> cat a c #

PersistableWidth r0 => Show (Pi r0 r1) # 

Methods

showsPrec :: Int -> Pi r0 r1 -> ShowS #

show :: Pi r0 r1 -> String #

showList :: [Pi r0 r1] -> ShowS #

pfmap :: ProductConstructor (a -> b) => (a -> b) -> Pi r a -> Pi r b #

Projectable fmap of Pi type.

pap :: Pi r (a -> b) -> Pi r a -> Pi r b #

Projectable ap of Pi type.

pzero :: Pi a () #

Pi with zero width which projects to unit

width' :: PersistableWidth r => Pi r ct -> PersistableRecordWidth ct #

Get record width proof object.

width :: PersistableWidth r => Pi r a -> Int #

Get record width.

(<.>) :: Pi a b -> Pi b c -> Pi a c infixl 8 #

Compose projection path.

(<?.>) :: Pi a (Maybe b) -> Pi b c -> Pi a (Maybe c) infixl 8 #

Compose projection path. Maybe phantom functor is map-ed.

(<?.?>) :: Pi a (Maybe b) -> Pi b (Maybe c) -> Pi a (Maybe c) infixl 8 #

Compose projection path. Maybe phantom functors are join-ed like >=>.

pi :: PersistableRecordWidth r0 -> Pi r0 r1 -> [a] -> [a] #

Unsafely project untyped value list.

definePi #

Arguments

:: PersistableWidth r1 
=> Int

Index of flat SQL value list

-> Pi r0 r1

Result projection path

Unsafely define projection path from type r0 into type r1. Use inferred PersistableRecordWidth.

defineDirectPi' #

Arguments

:: PersistableRecordWidth r1 
-> [Int]

Indexes of flat SQL value list

-> Pi r0 r1

Result projection path

Unsafely define projection path from type r0 into type r1.

defineDirectPi #

Arguments

:: PersistableWidth r1 
=> [Int]

Indexes of flat SQL value list

-> Pi r0 r1

Result projection path

Unsafely define projection path from type r0 into type r1. Use inferred PersistableRecordWidth.

unsafeExpandIndexes' :: PersistableRecordWidth a -> Pi a b -> [Int] #

Unsafely untype key to expand indexes.

unsafeExpandIndexes :: PersistableWidth a => Pi a b -> [Int] #

Unsafely untype key to expand indexes.