RBE primitives array

cat-town
Dan Buch 3 years ago
parent 20531d1154
commit 798575d9ef
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

@ -0,0 +1,26 @@
use std::mem;
fn analyze_slice(slice: &[i32]) {
println!("first element of the slice: {}", slice[0]);
println!("the slice has {} elements", slice.len());
}
fn main() {
let xs: [i32; 5] = [1, 2, 3, 4, 5];
let ys: [i32; 500] = [0; 500];
println!("first element of the array: {}", xs[0]);
println!("second element of the array: {}", xs[1]);
println!("number of elements in the array: {}", xs.len());
println!("array occupies {} bytes", mem::size_of_val(&xs));
println!("borrow the whole array as a slice");
analyze_slice(&xs);
println!("borrow a section of the array as a slice");
analyze_slice(&ys[1..4]);
// println!("{}", xs[5]);
}
Loading…
Cancel
Save