<https://stackoverflow.com/questions/59072111/func...
# arrow
r
b
Arrow has an implementation of store or something like that with support to side effects?
j
Store implies comonads, that cannot have side-effects in pure code afaik. But if you mean
State
then there is
StateT
which when used over
IO
provides state with effects
👍 1