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
Merges #29Closes#16
Right now, access to arrays doesn't trigger write barriers. I need to implement that before I can work on generational
or incremental collection......
The vector API is a little rough around the edges
because `GcVec` doesn't implement `Copy` as all the other `Gc` types do.
See #30 for more details
This is related to #15 because
[T]
is unsized. Ideally, we would be able to haveGc<'gc, [i32]>
without any indirection through aBox<[T]>
.The big problem here is that the simple collector expects
Gc
to have a statically-known size......This is very important to actually properly implement any real-world use. In theory, arrays could just wrap
Vec
right now but that's not very elegant.The text was updated successfully, but these errors were encountered: