You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 2, 2021. It is now read-only.
When I'm using this library, sometimes I have problems flattening all my data into a bumpalo::*::Vec to use as the children for a node. react solves this problem with fragments, a special node type that, rather than rendering an element in the dom, transparently inserts its children into the parent element at the right point.
It might make the library faster as well, since there will be less accidental re-allocations from use of bumpalo::*::Vec::push.
The text was updated successfully, but these errors were encountered:
When I'm using this library, sometimes I have problems flattening all my data into a
bumpalo::*::Vec
to use as the children for a node.react
solves this problem with fragments, a special node type that, rather than rendering an element in the dom, transparently inserts its children into the parent element at the right point.It might make the library faster as well, since there will be less accidental re-allocations from use of
bumpalo::*::Vec::push
.The text was updated successfully, but these errors were encountered: