W3cubDocs

/Rust

Struct std::ops::RangeFull

pub struct RangeFull;

An unbounded range (..).

RangeFull is primarily used as a slicing index, its shorthand is ... 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);

It does not have an IntoIterator implementation, so you can't use it in a for loop directly. This won't compile:

This example deliberately fails to 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  ]);

Trait Implementations

impl<T> Index<RangeFull> for Vec<T> [src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Index<RangeFull> for String [src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl<T> RangeArgument<T> for RangeFull where
    T: ?Sized
[src]

[src]

🔬 This is a nightly-only experimental API. (collections_range #30877)waiting for dust to settle on inclusive ranges

Start index bound. Read more

[src]

🔬 This is a nightly-only experimental API. (collections_range #30877)waiting for dust to settle on inclusive ranges

End index bound. Read more

impl<T> IndexMut<RangeFull> for Vec<T> [src]

[src]

Performs the mutable indexing (container[index]) operation.

impl IndexMut<RangeFull> for String
1.3.0
[src]

[src]

Performs the mutable indexing (container[index]) operation.

impl Clone for RangeFull [src]

[src]

Returns a copy of the value. Read more

[src]

Performs copy-assignment from source. Read more

impl Eq for RangeFull [src]

impl Hash for RangeFull [src]

[src]

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

1.3.0
[src]

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

impl IndexMut<RangeFull> for str
1.3.0
[src]

Implements mutable substring slicing with syntax &mut self[..].

Returns a mutable slice of the whole string. This operation can never panic.

Equivalent to &mut self[0 .. len].

[src]

Performs the mutable indexing (container[index]) operation.

impl Copy for RangeFull [src]

impl PartialEq<RangeFull> for RangeFull [src]

[src]

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

[src]

This method tests for !=.

impl Index<RangeFull> for str [src]

Implements substring slicing with syntax &self[..].

Returns a slice of the whole string. This operation can never panic.

Equivalent to &self[0 .. len].

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl SliceIndex<str> for RangeFull
1.20.0
[src]

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

The output type returned by methods.

[src]

🔬 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

[src]

🔬 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

[src]

🔬 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

[src]

🔬 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

[src]

🔬 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

[src]

🔬 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<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.

[src]

🔬 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

[src]

🔬 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

[src]

🔬 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

[src]

🔬 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

[src]

🔬 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

[src]

🔬 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 Debug for RangeFull [src]

[src]

Formats the value using the given formatter. Read more

impl Index<RangeFull> for CString
1.7.0
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Index<RangeFull> for OsString [src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

© 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