definition: |
allDBInfos :: (Read a, Show a) => KeyPred a -> Query [a] allDBInfos keyPred = Query $ do rows <- selectRows keyPred "*" "" return $!! map readInfo rows |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
Returns a list of all info parts of stored entries. Do not use this function unless the database is small. |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
allDBInfos |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
(Prelude.Read a, Prelude.Show a) => (Prelude.Int -> a -> Dynamic) -> Query [a] |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |