Posts by proot • 3 points
2 posts
-
0
votes2
answers223
viewsA: Is there a performance difference between Tuple and List?
Tuples are stored in a single memory block. Tuples are immutable, so do not require additional space to store new objects. Lists are allocated in two blocks, one fixed with all information from…
-
-2
votes2
answers232
views