<< Previous | Next >>

Daily Learnings: Wed, Jun 14, 2023

The greatest mistake you can make in life is to be continually fearing you will make one. — Elbert Hubbard

Processor Word Lengths

In continuing my review of the Rust programming language course, the instructor wrapped up the portion on the number-based data types available by discussing the isize and usize integer types. These correspond to the given platform’s architecture, meaning that if they’re running on a 32bit architecture they will result in 32 bits, or 64 bits on a 64bit architecture.

This was interesting, and another indication that I’m treading into programming waters deeper than I’ve gone before, as the instructor proceeding to describe why this was important. Here was the key learnings from that section:

References