Why are Reason Arrays Mutable?

Viewed 531

I suppose I am asking about the rationale behind this design decision.

Reason arrays being mutable sticks out as an aberration amongst its other data structures (list, record, hashmap, set) that are immutable by default.

Is there a reason for this? Is there an immutable alternative?

1 Answers
Related