54 books
—
6 voters
Programming Languages
Related Genres
“
Rust’s central feature is ownership. Although the feature is straightforward to explain, it has deep implications for the rest of the language.
All programs have to manage the way they use a computer’s memory while running. Some languages have garbage collection that constantly looks for no longer used memory as the program runs; in other languages, the programmer must explicitly allocate and free the memory. Rust uses a third approach: memory is managed through a system of ownership with a set
...more
”
― The Rust Programming Language
― The Rust Programming Language
“
In languages with a garbage collector (GC), the GC keeps track and cleans up memory that isn’t being used anymore, and we don’t need to think about it. Without a GC, it’s our responsibility to identify when memory is no longer being used and call code to explicitly return it, just as we did to request it. Doing this correctly has historically been a difficult programming problem. If we forget, we’ll waste memory. If we do it too early, we’ll have an invalid variable. If we do it twice, that’s a
...more
”
― The Rust Programming Language
― The Rust Programming Language
A group for listing and potentially discussing the books mentioned at https://twitter.com/munifi…more
1 member,
last active 2 years ago
Discover, discuss, and share books about programming, data science, and systems. From Lisp to Li…more
2 members,
last active 6 years ago
A monthly book club that suggest three new books with a review of the favorite from the previous…more
1 member,
last active 5 years ago
This group is dedicated to javascript as one of the greatest programming languages out there.
P…more
20 members,
last active 12 years ago































