Agda-2.4.2.3: A dependently typed functional programming language and proof assistant

Safe HaskellSafe
LanguageHaskell98

Agda.Utils.IORef

Description

Provides Data.IORef.modifyIORef' for base < 4.6.

Synopsis

Documentation

module Data.IORef

readModifyIORef' :: IORef a -> (a -> a) -> IO a Source

Read IORef, modify it strictly, and return old value.