-
Notifications
You must be signed in to change notification settings - Fork 0
CAT 038
unurgunite edited this page Jul 11, 2026
·
3 revisions
Severity:
info| Confidence:medium| Auto-fix: ❌
Capacity hints for large collections — Pre-allocate capacity with .new(capacity) for large collections to avoid repeated resizing.
ary = [] of Int32
10_000.times { |i| ary << i }Note
See bench results at bench/cat-038/