]> git.lizzy.rs Git - rust.git/blob - src/docs/large_digit_groups.txt
Add iter_kv_map lint
[rust.git] / src / docs / large_digit_groups.txt
1 ### What it does
2 Warns if the digits of an integral or floating-point
3 constant are grouped into groups that
4 are too large.
5
6 ### Why is this bad?
7 Negatively impacts readability.
8
9 ### Example
10 ```
11 let x: u64 = 6186491_8973511;
12 ```