Ludwig Stecher

Results 155 comments of Ludwig Stecher

I'm also having lags on Firefox for Android and Chrome for Android. Not sure about the CPU usage, but scrolling on the page is really laggy.

@kt3k It is much better in Chrome for Android now. It's also fixed in Firefox for Android, but I didn't notice a difference in _Nightly_ Firefox for Android. It might...

> You don't technically need to use the `IntoIterator` trait in order to work with `for` loops @KodrAus that isn't true. For [example](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=8038edb72e08eb9f983bd8a11a3533f3): ```rust struct Foo; impl Foo { fn...

@Srinivasa314 interfaces could be verified at compile time if someone implemented a tool for it. But the main reason I added them is that they're needed at runtime for this...

@filiptronicek has a new release been published? I just want to make sure this isn't forgotten.

This should be possible to fix with the [unicode-width](https://docs.rs/unicode-width/latest/unicode_width/) crate.

@tasogare3710 It does not require an exact count of the user-perceived characters, it requires an exact **width** of the user-perceived characters in a terminal. Since some characters, such as emojis...

The "Summary" section is not a summary. It should be AT LEAST one sentence summarizing the feature, and not just 3 words that tell you nothing unless you are already...

I think that an enum return value is the simpler, more flexible approach. An attribute doesn't compose well, it introduces new syntax one has to remember, and the semantics aren't...

I'm concerned that this is tying methods to editions. I'm also concerned that resolving the ambiguities still requires manual intervention. This means that breakage in a dependency requires patching that...