llogiq

Results 228 comments of llogiq

@glaebhoerl so you'd want the full type for B in the following snippet? ``` static A = &[&["Hello", "Rust"], &["Foo", "Bar"]]; static B : ... = &[&A, &A] ```

Fully agreed. `unsafe` is for memory unsafety only. `_unchecked` on the other hand does not carry the same meaning. Just that *some* invariant is not checked and there likely is...

Question: Would this also allow mirroring a pane to multiple screens? Or is this already available by having multiple terminals attach to a single session?

I would also like this feature. I've changed my main editor from a combination of VSCode and Geany (linux) / Notepad++ (windows) to helix. Sometimes I have scripts that should...

The mutability isn't needed here, and removing it shows that the value doesn't need to be mutably borrowed. Also in theory it could help the compiler, but I assume the...

On CI, criterion is a mixed bag, because you can never know how much compute you actually get at any given moment. That said, [iai](https://github.com/bheisler/iai) is a good replacement in...

Oops for some reason it's still based on master. Will fix shortly.

Good point, so that would be cert rotation and what else?

I see two ways forward: 1. Make those changes selectable as they are by a feature flag 2. Add code until feature parity is reached Those are non-exclusive, although my...

What kind of machine is this? I get that Darwin is MacOS, right? Can you try compiling with `RUSTFLAGS="-c target-cpu=native"`?