definition: |
appendFile :: FilePath -> String -> IO () appendFile f s = (prim_appendFile $## f) s |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- An action that appends a string to a file. --- It behaves like `writeFile` if the file does not exist. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
appendFile |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
[Char] -> [Char] -> IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |