This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Ragnar {Groot Koerkamp}
curiouscoding.nl
did:plc:olhpu3lwhpafue3jjmhat4mj
Sooo, the allocating part of `Vec::resize()` is explicitly marked `#[cold]` to prevent inlining... But that's now explicitly working against me in a `buf.clear(); buf.resize(n);` situation.
Instead I have to `if buf.is_empty() { *buf = vec![0; n]; }`, which _does_ inline.
2025-10-14T17:07:20.926Z