|
|
|
|
|
by brundolf
1655 days ago
|
|
Ah so these are actual persistent data structures. Got it, that makes more sense. The use of the term "tuple" here is odd; I've only ever seen it used to describe fixed-width, non-homogenous sequences. These look more like immutable lists (though I guess they can serve both purposes). |
|
That's what they are here. Array are heterogenous in JS, and tuples are too. And since they're immutable, their size is fixed.