Yuri Astrakhan
Yuri Astrakhan
Per https://github.com/rust-lang/book/issues/3047, use captured identifiers instead of the positional ones for some examples, e.g. ```diff - println!("Worker {} got a job; executing.", id); + println!("Worker {id} got a job; executing.");...
v1.58 introduces [captured identifiers in format strings](https://blog.rust-lang.org/2022/01/13/Rust-1.58.0.html#captured-identifiers-in-format-strings), and yet it seems most of the examples in the book still use positional placeholders. Is this intentional, or should I submit a...
* use `#[must_use]` for Self-returning fn * some minor docs for panics * use `Self` instead of a specific type in some cases I used this command to test: ```...
It seems there is a json high nesting bug after each CI run. Not certain what is causing it, but all PRs end up in a failed state, making CI...
Hi, I ran `cargo clippy -- -W clippy::pedantic --no-deps` and it seems there are quiet a few lints being reported, some possibly more important than others. Are you interesting in...
Test PR
This is a sample Pull Request that will remain open for demo purposes.
Hi, would it be possible to use `INCLUDE+` with parameterized builds? [PostGIS repo](https://github.com/postgis/docker-postgis) uses this approach, where several basic templates are used with bash param substitution to build many different...
It seems that if the `State::actions()` returns an empty vector, the whole system crashes. I am new to reinforcement learning, so I might be using it incorrectly. My setup: *...
This is a first draft of the smart list. It passes all of the existing smartlist tests (except for full-list reversal, whose behavior has changed), but the rest of the...
Update smart list unit tests to highlight several iteration and slicing related bugs. Many of the tests are ran twice - once comparing a list, and once iterating over the...