Chayim Refael Friedman

Results 24 issues of Chayim Refael Friedman

`Arc` generates a `where Self: Send` bound, but for `Arc` it is not enough - it requires also `T: Sync` to be `Send`. This make the following code failing to...

https://doc.rust-lang.org/reference/items/implementations.html#generic-implementations > Generic parameters _constrain_ an implementation if the parameter appears at least once in one of: > - ... > - As an [associated type](https://doc.rust-lang.org/reference/items/associated-items.html#associated-types) in the [bounds](https://doc.rust-lang.org/reference/trait-bounds.html) of...

The title tells the story... I want to open a window as maximized.

feature request
next

Lookup is expensive: it implies hash table lookup. Although an optimizing compiler can fold the hash of `""` and `""` (and thus avoid recomputing it every time), the process is...

It was one tab instead of two levels (4 spaces).

First, thanks for the excellent framework! 🥇 Gemini automatically saves all modules state in ./Application.bin. This is great as this automatically stores the layout and reducing the work you need...

More like: ```rust #[derive(Debug)] enum FSharpList { Cons(T, Box), Nil, } impl FSharpList { fn new(input: I) -> Self { let mut iter = input.into_iter(); match iter.next() { Some(item) =>...

`.unwrap()` is not a good sign (and optimizes poorly, though I didn't check this example specifically). `if let` is more appropriate here (though `match` will do too).