Corrected definition of "slice" concept

This commit is contained in:
Carlo Milanesi 2016-05-28 15:22:22 +02:00
parent 060da6fe0c
commit 08c653ad62

View File

@ -81,9 +81,10 @@ fn main() {
let s: String = "hello world".to_string();
// A string slice an immutable view into another string
// This is basically an immutable pointer to a string it doesnt
// This is basically an immutable pair of pointers to a string it doesnt
// actually contain the contents of a string, just a pointer to
// something that does (in this case, `s`)
// the begin and a pointer to the end of a string buffer,
// statically allocated or contained in another object (in this case, `s`)
let s_slice: &str = &s;
println!("{} {}", s, s_slice); // hello world hello world