modifyIORefC< T> function
A curried version of the modifyIORef
Implementation
IO<Unit> Function(IORef<T> ref) modifyIORefC<T>(Endo<T> update) =>
(ref) => ref.modify(update);
A curried version of the modifyIORef
IO<Unit> Function(IORef<T> ref) modifyIORefC<T>(Endo<T> update) =>
(ref) => ref.modify(update);