Difference between ImmutableArray and ImmutableList
Here is some reading that might help explain: Please welcome ImmutableArray Here’s an excerpt: Reasons to use immutable array: Updating the data is rare or the number of elements is quite small (<16) you need to be able to iterate over the data in performance critical sections you have many instances of immutable collections and … Read more