-
Notifications
You must be signed in to change notification settings - Fork 0
CAT 040
unurgunite edited this page Jul 11, 2026
·
3 revisions
| Field | Value |
|---|---|
| Severity | hint |
| Confidence | low |
| Auto-fix | ❌ |
String.build for simple literals — Using String.build for a simple concatenation of literals adds unnecessary complexity. Use string interpolation.
String.build { |io| io << "hello" << " " << "world" }