pub struct RangeTo<Idx> { pub end: Idx, }
A range only bounded exclusively above (..end
).
The RangeTo
..end
contains all values with x < end
. It cannot serve as an Iterator
because it doesn't have a starting point.
The ..end
syntax is a RangeTo
:
assert_eq!((..5), std::ops::RangeTo { end: 5 });
It does not have an IntoIterator
implementation, so you can't use it in a for
loop directly. This won't compile:
// error[E0277]: the trait bound `std::ops::RangeTo<{integer}>: // std::iter::Iterator` is not satisfied for i in ..5 { // ... }
When used as a slicing index, RangeTo
produces a slice of all array elements before the index indicated by end
.
let arr = [0, 1, 2, 3]; assert_eq!(arr[ .. ], [0,1,2,3]); assert_eq!(arr[ ..3], [0,1,2 ]); // RangeTo assert_eq!(arr[1.. ], [ 1,2,3]); assert_eq!(arr[1..3], [ 1,2 ]);
end: Idx
The upper bound of the range (exclusive).
impl<Idx> RangeTo<Idx> where
Idx: PartialOrd<Idx>,
[src]
fn contains(&self, item: Idx) -> bool
[src]
Returns true
if item
is contained in the range.
#![feature(range_contains)] assert!( (..5).contains(-1_000_000_000)); assert!( (..5).contains(4)); assert!(!(..5).contains(5));
impl Index<RangeTo<usize>> for String
[src]
type Output = str
The returned type after indexing.
fn index(&self, index: RangeTo<usize>) -> &str
[src]
Performs the indexing (container[index]
) operation.
impl<T> Index<RangeTo<usize>> for Vec<T>
[src]
type Output = [T]
The returned type after indexing.
fn index(&self, index: RangeTo<usize>) -> &[T]
[src]
Performs the indexing (container[index]
) operation.
impl<T> RangeArgument<T> for RangeTo<T>
[src]
fn start(&self) -> Bound<&T>
[src]
Start index bound. Read more
fn end(&self) -> Bound<&T>
[src]
End index bound. Read more
impl<T> IndexMut<RangeTo<usize>> for Vec<T>
[src]
fn index_mut(&mut self, index: RangeTo<usize>) -> &mut [T]
[src]
Performs the mutable indexing (container[index]
) operation.
impl IndexMut<RangeTo<usize>> for String
fn index_mut(&mut self, index: RangeTo<usize>) -> &mut str
[src]
Performs the mutable indexing (container[index]
) operation.
impl<Idx> Clone for RangeTo<Idx> where
Idx: Clone,
[src]
fn clone(&self) -> RangeTo<Idx>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
[src]
Performs copy-assignment from source
. Read more
impl<Idx> Eq for RangeTo<Idx> where
Idx: Eq,
[src]
impl<Idx> Hash for RangeTo<Idx> where
Idx: Hash,
[src]
fn hash<__HIdx>(&self, __arg_0: &mut __HIdx) where
__HIdx: Hasher,
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl IndexMut<RangeTo<usize>> for str
Implements mutable substring slicing with syntax &mut self[.. end]
.
Returns a mutable slice of the string from the beginning to byte offset end
.
Equivalent to &mut self[0 .. end]
.
fn index_mut(&mut self, index: RangeTo<usize>) -> &mut str
[src]
Performs the mutable indexing (container[index]
) operation.
impl<Idx> Copy for RangeTo<Idx> where
Idx: Copy,
[src]
impl<Idx> PartialEq<RangeTo<Idx>> for RangeTo<Idx> where
Idx: PartialEq<Idx>,
[src]
fn eq(&self, __arg_0: &RangeTo<Idx>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &RangeTo<Idx>) -> bool
[src]
This method tests for !=
.
impl Index<RangeTo<usize>> for str
[src]
Implements substring slicing with syntax &self[.. end]
.
Returns a slice of the string from the beginning to byte offset end
.
Equivalent to &self[0 .. end]
.
type Output = str
The returned type after indexing.
fn index(&self, index: RangeTo<usize>) -> &str
[src]
Performs the indexing (container[index]
) operation.
impl SliceIndex<str> for RangeTo<usize>
type Output = str
The output type returned by methods.
fn get(
self,
slice: &str
) -> Option<&<RangeTo<usize> as SliceIndex<str>>::Output>
[src]
Returns a shared reference to the output at this location, if in bounds. Read more
fn get_mut(
self,
slice: &mut str
) -> Option<&mut <RangeTo<usize> as SliceIndex<str>>::Output>
[src]
Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(
self,
slice: &str
) -> &<RangeTo<usize> as SliceIndex<str>>::Output
[src]
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 str
) -> &mut <RangeTo<usize> as SliceIndex<str>>::Output
[src]
Returns a mutable reference to the output at this location, without performing any bounds checking. Read more
fn index(self, slice: &str) -> &<RangeTo<usize> as SliceIndex<str>>::Output
[src]
Returns a shared reference to the output at this location, panicking if out of bounds. Read more
fn index_mut(
self,
slice: &mut str
) -> &mut <RangeTo<usize> as SliceIndex<str>>::Output
[src]
Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl<T> SliceIndex<[T]> for RangeTo<usize>
type Output = [T]
The output type returned by methods.
fn get(self, slice: &[T]) -> Option<&[T]>
[src]
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]>
[src]
Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(self, slice: &[T]) -> &[T]
[src]
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]
[src]
Returns a mutable reference to the output at this location, without performing any bounds checking. Read more
fn index(self, slice: &[T]) -> &[T]
[src]
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]
[src]
Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl<Idx> Debug for RangeTo<Idx> where
Idx: Debug,
[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
© 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.RangeTo.html