CurryInfo: base-3.4.0 / Data.IORef.modifyIORef

definition: Info
 
modifyIORef :: IORef a -> (a -> a) -> IO ()
modifyIORef ref f = readIORef ref >>= writeIORef ref . f
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Modify the value of an IORef.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 modifyIORef
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 IORef a -> (a -> a) -> Prelude.IO ()
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms