@hackage monad-statevar0.1
Concise, overloaded accessors for IORef, STRef, TVar
Categories
License
BSD-3-Clause
Maintainer
joeyadams3.14159@gmail.com
Links
Versions
- 0.1 Mon, 11 Feb 2013
Installation
Dependencies (2)
- base >=4.3 && <5
- transformers Show all…
Dependents (1)
@hackage/acme-everything
Overloaded get
and put
for state variables (IORef
, STRef
, TVar
)
to make reading and writing more concise.
Inspired by the StateVar package by Sven Panne, with the following differences:
Supports variables in other monads besides
IO
(e.g.TVar
,STRef
).Provides non-infix
put
,modify
, etc.Does not provide concrete state variables (i.e. ones where you supply get and put callbacks). If you want this feature, please submit an issue.
Named "Control.Monad.StateVar" instead of "Data.StateVar", to avoid a module naming conflict.