Carlo Dell'Acqua
Carlo Dell'Acqua
Thanks for taking the time! Tinkering with the playground code I also tried to use different hooks other than `createComputed`, but with the same result. Interestingly if the child component...
Ok, I think I get what you're saying about the tracking. If it's fine with you, I'd leave this issue open considering this has some footgun potential. Thanks for now!
Hi, thanks for your time. While it's true that "this floating point behavior is inherent to JS", it's also true that the native `` is not affected, because browsers implement...
It seems like in recent versions of solid the problem disappeared. I guess the key change was introduced in 1.5.0 with the new batching behaviour. I just tried to replicate...
Hi there, it's been a while since I worked on this project (last commit was 3 years ago, time flies!) From what I gathered there shouldn't be too many issues...
If I may add to the original issue, tabs as an indentation mechanism wouldn't break ascii-diagrams as vaguely implied by the wording in the "Why is this bad?" section of...
Good catch! I previously used the first element in the buffer (accessible by `get_unchecked`) to retrieve a pointer to the base. With the latest commit I added a dedicated function...
I've been experimenting with an `extend_from_slice` and a `drain_to_slice` method. They're based on the same concept of `copy_from_slice` and `copy_to_slice`, except they move the read and write pointers accordingly. Benchmarks...