Mutating a Schema Instance in Effect Typescript
how to mutate a schema instance?
I have this class:
as every prop is readonly I can't mutate them, should I instead return a new instance of Foo and reassign my
I have this class:
as every prop is readonly I can't mutate them, should I instead return a new instance of Foo and reassign my
foo variable?