Results 482 comments of Jacob Lifshay

maybe a good option is to use `ref` instead of `static`: ```rust trait MyTrait { const self A: Foo; // ref means you get a reference when you access it,...

> Does this feature's benefits outweigh implementation complexity? I think it does because of how common it is to want to ignore some fields, that imo outweighs all the additional...

iirc there's also [rustc's gcc backend](https://github.com/rust-lang/rustc_codegen_gcc), so you maybe don't need to wait for gccrs or llvm.

> > iirc there's also [rustc's gcc backend](https://github.com/rust-lang/rustc_codegen_gcc), so you maybe don't need to wait for gccrs or llvm. > > [@programmerjake](https://github.com/programmerjake) Does it actually work? I don't know, but...

> [@barracuda156](https://github.com/barracuda156) I never tried it, and as far as I know they requires to use forked version of GCC: https://github.com/rust-lang/gcc iirc they're making progress upstreaming their patches so the...

I think there should be an explicit note in the tier list of targets that host tools are provided but they are tier 2.

I think we should try to support 3rd-party websites that have their own gitlab/forgejo/gitea/etc. instances, so e.g. gitlab.example.com could publish to whatever crates they own even though they aren't using...

one place I noticed it would be useful is when trying to store the range for a suffix of an array in as small a size as reasonably possible while...

seems like my list scraped from https://doc.rust-lang.org/nightly/trait.impl/core/iter/traits/iterator/trait.Iterator.js is still missing some

I'm writing a program to actually find all the impls using `rustdoc-types` and just noticed [`std::array::IntoIter: Default` is stable](https://doc.rust-lang.org/1.89.0/src/core/array/iter.rs.html#228), which is unexpected given the discussion in #77 that we'd specifically...