Johannes Dahlström
Johannes Dahlström
Another possible alternative: a light-weight fallible wrapper or view type that you could use at any point to opt-in to fallible allocation but still retain compatibility with APIs that take...
If these methods are added to `Vec`, it should be ensured that they do not clutter the docs and eg. IDE completions. Unfortunately, `std`docs display unstable items in stable docs...
> That means that one wrapper on `&mut Vec`, with a convenience method, could be a nice way to split these into their own documentation page and emphasize them in...
Futexes are a Linux-only thing, remember.
Why not configure a suitable `Loader`/`Environment` for the Jinja instance used so that regular Jinja `{% include %}`/`{% import %}` tags could be used in prompts to include templates? Specifically,...
For what it's worth, I strongly prefer only seeing errors as long as there are errors (but yes, denied lints should count as errors). There's time to fix warnings once...
Specifically for finite integer ranges there's actually an exact bound one can use today: `RangeBounds + ExactSizeIterator`. Not the most intuitive solution, of course, and with future non-iterator ranges the...
`String::make_othercase(&mut self)` would nicely complement `str::make_ascii_othercase(&mut self)`.
IMHO, window resizing on every frame is superfluous if the window is not resizable, which is a common case with games. In these cases I'd prefer not having to call...
A workaround is to enable `Limit Jinja prompts` in settings and then set `batch count` to something suitable (I haven't tested what happens if batch count is larger than the...