definition: |
trOption :: [Option] -> String trOption [] = "" trOption (ls@((AscOrder _):_)) = " order by " ++ intercalate ", " (map trOption' ls) trOption (ls@((DescOrder _):_)) = " order by " ++ intercalate ", " (map trOption' ls) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- Translate an Order-by to a string in a sql-query |
failfree: |
<FAILING> |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({[]}) |-> {[]} || ({:}) |-> _} |
name: |
trOption |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[Option] -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |