Skip to content

CAT 043

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-043 — Random.new reuse

Severity: info | Confidence: medium | Auto-fix:

Description

Random.new reuse — Creating a new Random.new each call is wasteful. Create once and reuse.

Bad code

3.times { Random.new.rand(10) }

Benchmark

Note

See bench results at bench/cat-043/

Clone this wiki locally