J
jeremy
Video
Array Slicing Syntax in Rust
A slice is a reference (a "view") into a contiguous portion of an existing data structure, such as an array, rather than an independently owned copy, allowing safe, efficient access to a subset of da…