Chayim Refael Friedman

Results 24 issues of Chayim Refael Friedman

1. A code block without a language. 2. No need to allocate, `str` has `chars()`.

> ```rust > fn name(mut self, name: &str) -> Self { > self.name = name.to_string(); > self > } > ``` It's preferred to take `String`: ```rust fn name(mut self,...

This is not exactly a customer request since I'm not using this crate currently, but I was looking on the docs and I wondered why won't you make the inner...

Discovered today: both `let _ = ` and `_ = ` (destructuring assignment) can be used to ignore `#[must_use]`, however because the former is a statement while the latter is...

`Yokeable` is implemented for `Vec`, but it does not forward the yoking and instead just treat them as owned values that do not borrow from the cart. This is inconsistent...

C-zerovec

In Wren, assignment returns its value, like in C: ```wren var a System.print(a = 5) // 5 ``` When implementing setters, we need to maintain this behavior: ```wren // Not...