Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Arrays in Rust

  • Array
  • The Array Type in the book.
  • An Array in Rust has a fixed number of elements.
  • All the elements are of the same type.
  • In mutable arrays we can change the content, but we still cannot add or remove elements.