How do i allocate a vector with 1042 empty indexes?
Will the storage for it be lazily allocated?
like this
(def a (array-creation-function 1042))
(def b (assoc a 1041 42))
(b 1041)
--> 42
|
How do i allocate a vector with 1042 empty indexes?
|
||||
|
... is lazy |
|||
|
It seems that vectors are not sparse so you must specify a value for each index when you create the vector. The easiest way seems to be to call (vec ) on a sequence.
These values are not created lazily it seems. |
|||||||||||
|
|
If your data is that sparse, then consider using an empty map instead of a vector.... then you get an unbounded number of lazily allocated empty indexes for free!
|
|||
|
|
|
If you want something that's not lazy but which avoids some overhead, you can do:
Note, |
|||||||
|