Diego Barrancodiagram.hashnode.dev·Apr 25, 2024Rust with diagrams: Ownership 6 - References & BorrowingBefore reading about References and Borrowing, you should know how variables and data interact with "move" and "clone" and understand the concept of the Heap. You can find a summary of these topics in the next articles. Rust's memory approach, Data i...Rust
Nurul Islamnuibb.hashnode.dev·Apr 1, 2024Why Actor in Swift Don't Support InheritanceIn the world of concurrent programming, Swift's actors provide a powerful abstraction for ensuring thread-safety and avoiding common concurrency pitfalls like data races. However, one design decision that might surprise some developers is the lack of...2 likesdata-race