aboutsummaryrefslogtreecommitdiffstats
path: root/src/checks/level1/README-qstring-left.md
blob: b4b53a984f01ad2fa34c2baa72fba3542c46310d (plain)
1
2
3
4
5
6
7
8
9
# qstring-left

Finds places where you're using `QString::left(1)` instead of `QString::at(0)`.
The later form is cheaper, as it doesn't deep-copy the string.

There's however another difference between the two: `left(1)` will return an empty
string if the string is empty, while `QString::at(0)` will assert. So be sure
that the string can't be empty, or add a `if (!str.isEmpty()` guard, which is still
faster than calling `left()` for the cases which deep-copy.