easy_rust icon indicating copy to clipboard operation
easy_rust copied to clipboard

Rust explained using easy English

Results 27 easy_rust issues
Sort by recently updated
recently updated
newest added

Zero is allowed, not only positive. Yes, this is nitpicking, but it's more technically correct now.

``` LaTeX Warning: File `https://github.com/Dhghomon/easy_rust/workflows/github\%20 pages/badge.svg' not found on input line 119. ! LaTeX Error: File `https://github.com/Dhghomon/easy_rust/workflows/github%20p ages/badge.svg' not found. See the LaTeX manual or LaTeX Companion for explanation. Type...

The following example consumes the books instead of returning references. I think this fits better with the into_iter description. impl Iterator for Library { type Item = String; fn next(&mut...

:us: I have started translating Easy Rust into Spanish. If you want to collaborate, you can do it in this repository: [easy_rust_es](https://github.com/PandaFoss/easy_rust_es) Tips or discussions on terminology and grammar are...

I made this change originally just to get it working on my machine. However, this refactored version could be beneficial to both GNU/Linux and OSX users. ** Didn't have time...

macOS 10.15.7 ```bash bash createBookFromReadme.sh 2020-12-19 14:48:44 [WARN] (mdbook::book::summary): Expected a start of a link, actually got Some(Text(Borrowed("["))) 2020-12-19 14:48:44 [ERROR] (mdbook::utils): Error: Summary parsing failed 2020-12-19 14:48:44 [ERROR] (mdbook::utils):...

In the first example in section: hashset-and-btreeset, last output for missing_vec does not print in my shell which is running in emacs, so may be a last println() to force...

Using the `as` keyword is considered harmful; it silently panics when value are out of range, and it's not explicit about it. Consider replacing: ```rust fn main() { let my_number...

Mo' Better "shadowing" example https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=6baa958c20b2032d6e0fa5c22db215f9 Short example without shadowing at all https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=caa313c8f63fccfe76b745331471af50

You should add a link to this repo in the markdown so that people like me who come across https://dhghomon.github.io/easy_rust/ from Google can easily get here and give you a...