In my quest for speed I want to create a new seq but setting it to all zeros is not necessary because I will be filling it in the next for loop anyways. I want t see if its faster if it just starts with garbage.
You can do this for arrays and pointers etc... a {.noInit.}: array [0..1023, char] Run But how to do that for a plain seq? I don't want to change all of my code to some other seq just to see if this micro optimization is helpful.