limira

Results 28 comments of limira

> The other option is of course to just use Mutable + MutableVec on both the server and client, which might not be a terrible idea. I prefer isolating (from...

I forgot to say that I know what `clone!` do now. The improve is just for new users when they first look at dominator!

> I have thought about that, but it's rather difficult to do, and even more difficult to do correctly. It's hard to keep it up-to-date, because every time a new...

Oh, sorry, `handler!` is more suitable for my own implementation. I did not think carefully enough before propose to dominator. Yeah, from your view point, `clone!` seems a reasonable name....

Yeah, maybe, or `clone_for!`. But explanation is still needed, for example: in examples/counter: ```rust // This will clone `state`, the cloned `state` will be moved into the closure. clone_for!(state =>...

Using wasm-bindgen, if I need to write some glue code in JS, I name all of them in snake case. So, this is a breaking change for me. I am...

It will break, eventually - because sooner or later, we have to move up to the latest version, right? That said, if you are unable to find a way to...

Thinking about this. I wonder what others do? I started using wasm-bindgen in Jul 2018 and found it useful for real app. It's nearly one+half years ago. I chose to...