Struct std::ops::RangeToInclusive
[−]
[src]
pub struct RangeToInclusive<Idx> { pub end: Idx, }
🔬 This is a nightly-only experimental API. (inclusive_range
#28237)
recently added, follows RFC
A range only bounded inclusively above (..=end
).
The RangeToInclusive
..=end
contains all values with x <= end
.
It cannot serve as an Iterator
because it doesn't have a starting point.
Examples
The ..=end
syntax is a RangeToInclusive
:
#![feature(inclusive_range,inclusive_range_syntax)] assert_eq!((..=5), std::ops::RangeToInclusive{ end: 5 });Run
It does not have an IntoIterator
implementation, so you can't use it in a
for
loop directly. This won't compile:
#![feature(inclusive_range_syntax)] // error[E0277]: the trait bound `std::ops::RangeToInclusive<{integer}>: // std::iter::Iterator` is not satisfied for i in ..=5 { // ... }Run
When used as a slicing index, RangeToInclusive
produces a slice of all
array elements up to and including the index indicated by end
.
#![feature(inclusive_range_syntax)] let arr = [0, 1, 2, 3]; assert_eq!(arr[ ..=2], [0,1,2 ]); // RangeToInclusive assert_eq!(arr[1..=2], [ 1,2 ]);Run
Fields
end: Idx
🔬 This is a nightly-only experimental API. (inclusive_range
#28237)
recently added, follows RFC
The upper bound of the range (inclusive)
Methods
impl<Idx> RangeToInclusive<Idx> where
Idx: PartialOrd<Idx>,
[src]
Idx: PartialOrd<Idx>,
pub fn contains(&self, item: Idx) -> bool
[src]
🔬 This is a nightly-only experimental API. (range_contains
#32311)
recently added as per RFC
Trait Implementations
impl IndexMut<RangeToInclusive<usize>> for str
[src]
fn index_mut(&mut self, index: RangeToInclusive<usize>) -> &mut str
[src]
Performs the mutable indexing (container[index]
) operation.
impl Index<RangeToInclusive<usize>> for str
[src]
type Output = str
The returned type after indexing.
fn index(&self, index: RangeToInclusive<usize>) -> &str
[src]
Performs the indexing (container[index]
) operation.
impl<Idx> Debug for RangeToInclusive<Idx> where
Idx: Debug,
[src]
Idx: Debug,
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter. Read more
impl<Idx> Hash for RangeToInclusive<Idx> where
Idx: Hash,
[src]
Idx: Hash,
fn hash<__HIdx>(&self, __arg_0: &mut __HIdx) where
__HIdx: Hasher,
[src]
__HIdx: Hasher,
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<Idx> Clone for RangeToInclusive<Idx> where
Idx: Clone,
[src]
Idx: Clone,
fn clone(&self) -> RangeToInclusive<Idx>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<Idx> Eq for RangeToInclusive<Idx> where
Idx: Eq,
[src]
Idx: Eq,
impl<Idx> PartialEq<RangeToInclusive<Idx>> for RangeToInclusive<Idx> where
Idx: PartialEq<Idx>,
[src]
Idx: PartialEq<Idx>,
fn eq(&self, __arg_0: &RangeToInclusive<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: &RangeToInclusive<Idx>) -> bool
[src]
This method tests for !=
.
impl<Idx> Copy for RangeToInclusive<Idx> where
Idx: Copy,
[src]
Idx: Copy,
impl<T> SliceIndex<[T]> for RangeToInclusive<usize>
[src]
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 SliceIndex<str> for RangeToInclusive<usize>
[src]
type Output = str
The output type returned by methods.
fn get(
self,
slice: &str
) -> Option<&<RangeToInclusive<usize> as SliceIndex<str>>::Output>
[src]
self,
slice: &str
) -> Option<&<RangeToInclusive<usize> as SliceIndex<str>>::Output>
Returns a shared reference to the output at this location, if in bounds. Read more
fn get_mut(
self,
slice: &mut str
) -> Option<&mut <RangeToInclusive<usize> as SliceIndex<str>>::Output>
[src]
self,
slice: &mut str
) -> Option<&mut <RangeToInclusive<usize> as SliceIndex<str>>::Output>
Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(
self,
slice: &str
) -> &<RangeToInclusive<usize> as SliceIndex<str>>::Output
[src]
self,
slice: &str
) -> &<RangeToInclusive<usize> as SliceIndex<str>>::Output
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 <RangeToInclusive<usize> as SliceIndex<str>>::Output
[src]
self,
slice: &mut str
) -> &mut <RangeToInclusive<usize> as SliceIndex<str>>::Output
Returns a mutable reference to the output at this location, without performing any bounds checking. Read more
fn index(
self,
slice: &str
) -> &<RangeToInclusive<usize> as SliceIndex<str>>::Output
[src]
self,
slice: &str
) -> &<RangeToInclusive<usize> as SliceIndex<str>>::Output
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 <RangeToInclusive<usize> as SliceIndex<str>>::Output
[src]
self,
slice: &mut str
) -> &mut <RangeToInclusive<usize> as SliceIndex<str>>::Output
Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl IndexMut<RangeToInclusive<usize>> for String
[src]
fn index_mut(&mut self, index: RangeToInclusive<usize>) -> &mut str
[src]
Performs the mutable indexing (container[index]
) operation.
impl<T> IndexMut<RangeToInclusive<usize>> for Vec<T>
[src]
fn index_mut(&mut self, index: RangeToInclusive<usize>) -> &mut [T]
[src]
Performs the mutable indexing (container[index]
) operation.
impl<T> Index<RangeToInclusive<usize>> for Vec<T>
[src]
type Output = [T]
The returned type after indexing.
fn index(&self, index: RangeToInclusive<usize>) -> &[T]
[src]
Performs the indexing (container[index]
) operation.
impl Index<RangeToInclusive<usize>> for String
[src]
type Output = str
The returned type after indexing.
fn index(&self, index: RangeToInclusive<usize>) -> &str
[src]
Performs the indexing (container[index]
) operation.
impl<T> RangeArgument<T> for RangeToInclusive<T>
[src]
fn start(&self) -> Bound<&T>
[src]
🔬 This is a nightly-only experimental API. (collections_range
#30877)
waiting for dust to settle on inclusive ranges
Start index bound. Read more
fn end(&self) -> Bound<&T>
[src]
🔬 This is a nightly-only experimental API. (collections_range
#30877)
waiting for dust to settle on inclusive ranges
End index bound. Read more