ZhangHanDong / tao-of-rust-codes

《Rust编程之道》随书源码
https://ruststudy.github.io/tao_of_rust_docs/tao_of_rust/
MIT License
1.19k stars 172 forks source link

【建议】示例代码很多应该都还有改进余地 #277

Closed thelastfantasy closed 4 years ago

thelastfantasy commented 4 years ago

比如这里 cargo clippy 跑了一下提示fold(0, |acc, &n| acc + n)可用sum()来代替,类似这样的可改进的示例应该还有不少吧 同时也是被clippy吓了一跳,这样的代码都能检查出来真是厉害

ZhangHanDong commented 4 years ago

@thelastfantasy 感谢反馈。

示例代码首先为了有教学效果,当然还有改进空间,但也不适合用 cargo clippy跑。第二版改进,看情况而定吧。