Struct core::ops::RangeFull1.0.0 [] [src]

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.

Examples

The .. syntax is a RangeFull:

assert_eq!((..), std::ops::RangeFull);Run

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 .. {
   // ...
}Run

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  ]);Run

Trait Implementations

impl Copy for RangeFull
[src]

impl Clone for RangeFull
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RangeFull
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for RangeFull
[src]

impl Hash for RangeFull
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for RangeFull
[src]

Formats the value using the given formatter.

impl<T> SliceIndex<[T]> for RangeFull
1.15.0
[src]

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

The output type returned by methods.

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, if in bounds. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, if in bounds. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, without performing any bounds checking. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, without performing any bounds checking. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, panicking if out of bounds. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, panicking if out of bounds. Read more

impl SliceIndex<str> for RangeFull
[src]

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

The output type returned by methods.

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, if in bounds. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, if in bounds. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, without performing any bounds checking. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, without performing any bounds checking. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a shared reference to the output at this location, panicking if out of bounds. Read more

🔬 This is a nightly-only experimental API. (slice_get_slice #35729)

Returns a mutable reference to the output at this location, panicking if out of bounds. Read more