flâneur — a map of the web's best reading

usize - Rust

doc.rust-lang.org · 42,585 words · saved by 1 readers

The pointer-sized unsigned integer type.

usize - Rust Skip to main content This old browser is unsupported and will most likely display funky things. usize Primitive Type usize Copy item path 1.0.0 Expand description The pointer-sized unsigned integer type. The size of this primitive is how many bytes it takes to reference any location in memory. For example, on a 32 bit target, this is 4 bytes and on a 64 bit target, this is 8 bytes. Implementations § Source § impl usize 1.43.0 · Source pub const MIN : usize = 0 The smallest value that can be represented by this integer type. § Examples assert_eq! (usize::MIN, 0 ); 1.43.0 · Source p

Explore this link on the map →

related reading