definition: |
writeGlobalP :: Show a => GlobalP a -> a -> IO () writeGlobalP (GlobalP f) v = exclusiveIO (f ++ ".LOCK") $ writeFile f (show v ++ "\n") |
demand: |
argument 2 |
deterministic: |
deterministic operation |
documentation: |
--- Updates the value of a persistent global entity. |
failfree: |
(_, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,{GlobalP},_) |-> _} |
name: |
writeGlobalP |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.Show a => GlobalP a -> a -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |