We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider this:
Adjustable
extensibleListWidgetWithSize
If reflex-frp/reflex#299 is ever done, we could remove the map entirely.
Even without that, it's possible to use tons of "with move" patches (http://hackage.haskell.org/package/reflex-0.6.1/docs/Reflex-Patch-DMapWithMove.html#t:PatchDMapWithMove) to perhaps get a slightly more efficient result. (Still O(n) not O(1) browser operations, but at least individual kv-pair widgets don't get redrawn.)
O(n)
O(1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider this:
Adjustable
allows patches on a map showing kv-pair rearrangementextensibleListWidgetWithSize
spoofs keys for a map solely widgets are laid out in the right order.If reflex-frp/reflex#299 is ever done, we could remove the map entirely.
Even without that, it's possible to use tons of "with move" patches (http://hackage.haskell.org/package/reflex-0.6.1/docs/Reflex-Patch-DMapWithMove.html#t:PatchDMapWithMove) to perhaps get a slightly more efficient result. (Still
O(n)
notO(1)
browser operations, but at least individual kv-pair widgets don't get redrawn.)The text was updated successfully, but these errors were encountered: