definition: |
transformQ :: (a -> b) -> Query a -> Query b transformQ f query = Query (runQ query >>= return . f) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Applies a function to the result of a database query. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> {Query}} |
name: |
transformQ |
precedence: |
no precedence defined |
result-values: |
{Query} |
signature: |
(a -> b) -> Query a -> Query b |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |