Just as a reminder to self: the non-generic TStringList and TList grow way less aggressive than the generic TList:
- TList.Grow and TStringList.Grow:
- 4, 8, 12, 28, 44, 60, 76, 95, 118, 147, 183, 228, 285, 356, 445, 556, 695, 868, 1085
- Generic TList growth via TListHelper.InternalGrow:
- 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024
Sources:
- [WayBack] I was just looking at TList.Grow (and TStringList.Grow) and I realized that t…
- [WayBack] Generics.Collections – TList / TListHelper grows list size too aggressivel…
–jeroen