Clinton Selke
Clinton Selke
Have a look at: https://moxie.rs/ Reminds me of svelte. Incremental instead of VDOM.
I do not have a failing test case for this. However I believe this is not a safe place to free a node: https://github.com/fitzgen/bacon-rajan-cc/blob/9d59ed4331d133b1de6b5799ee8e759d0a364ae5/src/collect.rs#L223 I believe the free-ing should be...
All versions of rustpython-vm have been yanked from crates.io and it is a dependency of rustpython. Cargo won't let me try out RustPython, because of that issue.
Can be handy if a data constructor has a lot of fields, and you want to insure the user of your data structure supplies the fields in the correct order....
The following static method in Stream is unsafe. ```public static Stream iteratorStream(final Iterator it)``` Due to Stream's use of ```WeakRef```, when you visit the elements of ```Stream``` you can get...
Is there any plans to support locally scoped css in moxie-dom?
This line here: https://github.com/SodiumFRP/sodium-typescript/blob/7e1e7f98d885faa4f23a61ed903feecbf973d2f9/src/lib/sodium/Transaction.ts#L162 We probably should defer the thrown exception until after the ```postQ``` is finished being processed. Otherwise on a crash a false "Error: send() called more than...
One rule that can help with performance is: If the rank of a vertex changes, but that vertex is not yet in the priority queue, then the priority queue does...
- A cleanup (remove from) callback can be returned from "Transaction.onStart". - A vertex for the TimerSystem object itself can be created to make it a part of the same...
Couple of handy methods missing that are found in other sodium impls: - Stream.orElses(...) (