On my machine I find that
    
    
    
    s = newSeqOfCap[int](128)
    

is about 10 times slower than
    
    
    
    s = newSeq[int]()
     

Reply via email to