| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
Opaleye.Binary
- unionAll :: Default Binaryspec columns columns => Query columns -> Query columns -> Query columns
- unionAllExplicit :: Binaryspec columns columns' -> Query columns -> Query columns -> Query columns'
Documentation
unionAll :: Default Binaryspec columns columns => Query columns -> Query columns -> Query columns Source
Example type specialization:
unionAll :: Query (Column a, Column b)
-> Query (Column a, Column b)
-> Query (Column a, Column b)
Assuming the makeAdaptorAndInstance splice has been run for the product type Foo:
unionAll :: Query (Foo (Column a) (Column b) (Column c))
-> Query (Foo (Column a) (Column b) (Column c))
-> Query (Foo (Column a) (Column b) (Column c))
unionAllExplicit :: Binaryspec columns columns' -> Query columns -> Query columns -> Query columns' Source