Explore >> Select a destination


You are here

www.sebastiansylvan.com
| | aykevl.nl
2.5 parsecs away

Travel
| | An explanation of how garbage collectors work including some pseudocode how a real GC could be implemented.
| | www.shironekolabs.com
2.0 parsecs away

Travel
| | Game Development and the like
| | www.stackchief.com
3.2 parsecs away

Travel
| | Garbage collection in Java including understanding what is garbage collection, why garbage collection, how garbage collection works in Java, force garbage collection, monitoring garbage collection and interview questions.
| | boats.gitlab.io
19.7 parsecs away

Travel
| Today I realized a new crate called pin-cell. This crate contains a type called PinCell, which is a kind of cell that is similar to RefCell, but only can allow pinned mutable references into its interior. Right now, the crate is nightly only and no-std compatible. How is the API of PinCell different from RefCell? When you call borrow_mut on a RefCell, you get a type back that implements DerefMut, allowing you to mutate the interior value.