Rust's BufRead, And When To Use It
CRANK
Rust is a low-level language, and its standard library is careful to give the programmer lots of control over how things will behave and avoid implicit behavior, especially when that behavior impacts performance. But at the same time, it doesn't want to make the programmer's life harder than it needs to be. As a result, Rust's language features and standard library often give you access to really low-level concepts with no assumptions baked in, but then also give you abstractions you can optionally layer on top.
1 comments
比較的入門的な内容。ReadとBufReadの役割の違い
Rust's BufRead, And When To Use It | Brandon's Website
brandons.me/blog/bufread-a…