pub struct RangeFull;
An unbounded range. Use .. (two dots) for its shorthand.
Its primary use case is slicing index. It cannot serve as an iterator because it doesn't have a starting point.
The .. syntax is a RangeFull:
assert_eq!((..), std::ops::RangeFull);
It does not have an IntoIterator implementation, so you can't use it in a for loop directly. This won't compile:
for i in .. {
// ...
} Used as a slicing index, RangeFull produces the full array as a slice.
let arr = [0, 1, 2, 3]; assert_eq!(arr[ .. ], [0,1,2,3]); // RangeFull assert_eq!(arr[ ..3], [0,1,2 ]); assert_eq!(arr[1.. ], [ 1,2,3]); assert_eq!(arr[1..3], [ 1,2 ]);
impl<T> RangeArgument<T> for RangeFull where T: ?Sized
[src]
fn start(&self) -> Bound<&T>Start index bound Read more
fn end(&self) -> Bound<&T>End index bound Read more
impl PartialEq<RangeFull> for RangeFull
[src]
fn eq(&self, __arg_0: &RangeFull) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Clone for RangeFull
[src]
fn clone(&self) -> RangeFullReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Eq for RangeFull
[src]
impl Debug for RangeFull
[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter.
impl Copy for RangeFull
[src]
impl<T> SliceIndex<T> for RangeFull
type Output = [T]The output type returned by methods.
fn get(self, slice: &[T]) -> Option<&[T]>Returns a shared reference to the output at this location, if in bounds. Read more
fn get_mut(self, slice: &mut [T]) -> Option<&mut [T]>Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(self, slice: &[T]) -> &[T]Returns a shared reference to the output at this location, without performing any bounds checking. Read more
unsafe fn get_unchecked_mut(self, slice: &mut [T]) -> &mut [T]Returns a mutable reference to the output at this location, without performing any bounds checking. Read more
fn index(self, slice: &[T]) -> &[T]Returns a shared reference to the output at this location, panicking if out of bounds. Read more
fn index_mut(self, slice: &mut [T]) -> &mut [T]Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl Hash for RangeFull
[src]
fn hash<__H>(&self, __arg_0: &mut __H) where __H: HasherFeeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: HasherFeeds a slice of this type into the state provided.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/ops/struct.RangeFull.html