- Rust str (ASCII or UTF-8)
- Integer
- Byte quantities
Details
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
rust/hg-core/src/config/config.rs | ||
---|---|---|
261–262 | Should private methods be under public ones for readability? |
rust/hg-core/src/config/config.rs | ||
---|---|---|
261–262 | My thinking was to have this method near related methods (that call it). We could also separate private v.s. public, but isn’t rustdoc better than looking a source directly for a reader who’s interested in public APIs more than their implementation? |
rust/hg-core/src/config/config.rs | ||
---|---|---|
261–262 | Either way is fine with me. I usually regroup it the same way you do, but I was asked last time to split them in public then private. Let's get democratic and see if anyone cares enough ;) |
Should private methods be under public ones for readability?