effect icon indicating copy to clipboard operation
effect copied to clipboard

[Question] Looking for structures.

Open waynevanson opened this issue 2 years ago • 1 comments

I'm looking for Reader, Writer and State structures but can't find them.

Am I missing something?

waynevanson avatar Jul 15 '23 08:07 waynevanson

They are not part of Effect, the advise is to use Effect directly, for example State<S> can be simulated with:

interface NumberState {
  readonly _: unique symbol
}
const NumberState = Tag<NumberState, Ref<number>>("@app/NumberState")

mikearnaldi avatar Sep 26 '23 14:09 mikearnaldi