Rust
Smart Pointers in Rust (Box, Rc, Arc, RefCell, Mutex, RwLock)
As you know Rust is null-safe language and no garbage collection. It has some pointers which have some rules for preventing shooting our foot. We can’t use pointers directly as we wish in Rust, we must use them behind of some types, these types have special name: Smart Pointer. Actually Devamı…