Skip to content

CAT 038

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-038 — Capacity hints for large collections

Field Value
Severity info
Confidence medium
Auto-fix

Capacity hints for large collections — Pre-allocate capacity with .new(capacity) for large collections to avoid repeated resizing.

Bad code

ary = [] of Int32
10_000.times { |i| ary << i }

Clone this wiki locally