Struct sgx_tstd::ops::RangeToInclusive 1.26.0[−][src]
pub struct RangeToInclusive<Idx> { pub end: Idx, }
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
:
assert_eq!((..=5), std::ops::RangeToInclusive{ 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::RangeToInclusive<{integer}>: // std::iter::Iterator` is not satisfied for i in ..=5 { // ... }
When used as a slicing index, RangeToInclusive
produces a slice of all
array elements up to and including the index indicated by end
.
let arr = [0, 1, 2, 3]; assert_eq!(arr[ ..=2], [0,1,2 ]); // RangeToInclusive assert_eq!(arr[1..=2], [ 1,2 ]);
Fields
end: Idx
The upper bound of the range (inclusive)
Methods
impl<Idx> RangeToInclusive<Idx> where
Idx: PartialOrd<Idx>,
[src]
impl<Idx> RangeToInclusive<Idx> where
Idx: PartialOrd<Idx>,
pub fn contains<U>(&self, item: &U) -> bool where
Idx: PartialOrd<U>,
U: PartialOrd<Idx> + ?Sized,
[src]
pub fn contains<U>(&self, item: &U) -> bool where
Idx: PartialOrd<U>,
U: PartialOrd<Idx> + ?Sized,
🔬 This is a nightly-only experimental API. (range_contains
)
recently added as per RFC
Returns true
if item
is contained in the range.
Examples
#![feature(range_contains)] use std::f32; assert!( (..=5).contains(&-1_000_000_000)); assert!( (..=5).contains(&5)); assert!(!(..=5).contains(&6)); assert!( (..=1.0).contains(&1.0)); assert!(!(..=1.0).contains(&f32::NAN)); assert!(!(..=f32::NAN).contains(&0.5));
Trait Implementations
impl<Idx> Clone for RangeToInclusive<Idx> where
Idx: Clone,
[src]
impl<Idx> Clone for RangeToInclusive<Idx> where
Idx: Clone,
fn clone(&self) -> RangeToInclusive<Idx>
[src]
fn clone(&self) -> RangeToInclusive<Idx>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl IndexMut<RangeToInclusive<usize>> for str
[src]
impl IndexMut<RangeToInclusive<usize>> for str
fn index_mut(&mut self, index: RangeToInclusive<usize>) -> &mut str
[src]
fn index_mut(&mut self, index: RangeToInclusive<usize>) -> &mut str
Performs the mutable indexing (container[index]
) operation.
impl<Idx> Eq for RangeToInclusive<Idx> where
Idx: Eq,
[src]
impl<Idx> Eq for RangeToInclusive<Idx> where
Idx: Eq,
impl<Idx> Hash for RangeToInclusive<Idx> where
Idx: Hash,
[src]
impl<Idx> Hash for RangeToInclusive<Idx> where
Idx: Hash,
fn hash<__HIdx>(&self, state: &mut __HIdx) where
__HIdx: Hasher,
[src]
fn hash<__HIdx>(&self, state: &mut __HIdx) where
__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]
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<Idx> Debug for RangeToInclusive<Idx> where
Idx: Debug,
[src]
impl<Idx> Debug for RangeToInclusive<Idx> where
Idx: Debug,
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<T> SliceIndex<[T]> for RangeToInclusive<usize>
[src]
impl<T> SliceIndex<[T]> for RangeToInclusive<usize>
type Output = [T]
The output type returned by methods.
fn get(self, slice: &[T]) -> Option<&[T]>
[src]
fn get(self, slice: &[T]) -> Option<&[T]>
slice_index_methods
)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]
fn get_mut(self, slice: &mut [T]) -> Option<&mut [T]>
slice_index_methods
)Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(self, slice: &[T]) -> &[T]
[src]
unsafe fn get_unchecked(self, slice: &[T]) -> &[T]
slice_index_methods
)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]
unsafe fn get_unchecked_mut(self, slice: &mut [T]) -> &mut [T]
slice_index_methods
)Returns a mutable reference to the output at this location, without performing any bounds checking. Read more
fn index(self, slice: &[T]) -> &[T]
[src]
fn index(self, slice: &[T]) -> &[T]
slice_index_methods
)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]
fn index_mut(self, slice: &mut [T]) -> &mut [T]
slice_index_methods
)Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl SliceIndex<str> for RangeToInclusive<usize>
[src]
impl SliceIndex<str> for RangeToInclusive<usize>
type Output = str
The output type returned by methods.
fn get(
self,
slice: &str
) -> Option<&<RangeToInclusive<usize> as SliceIndex<str>>::Output>
[src]
fn get(
self,
slice: &str
) -> Option<&<RangeToInclusive<usize> as SliceIndex<str>>::Output>
slice_index_methods
)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]
fn get_mut(
self,
slice: &mut str
) -> Option<&mut <RangeToInclusive<usize> as SliceIndex<str>>::Output>
slice_index_methods
)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]
unsafe fn get_unchecked(
self,
slice: &str
) -> &<RangeToInclusive<usize> as SliceIndex<str>>::Output
slice_index_methods
)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]
unsafe fn get_unchecked_mut(
self,
slice: &mut str
) -> &mut <RangeToInclusive<usize> as SliceIndex<str>>::Output
slice_index_methods
)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]
fn index(
self,
slice: &str
) -> &<RangeToInclusive<usize> as SliceIndex<str>>::Output
slice_index_methods
)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]
fn index_mut(
self,
slice: &mut str
) -> &mut <RangeToInclusive<usize> as SliceIndex<str>>::Output
slice_index_methods
)Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl Index<RangeToInclusive<usize>> for str
[src]
impl Index<RangeToInclusive<usize>> for str
type Output = str
The returned type after indexing.
fn index(&self, index: RangeToInclusive<usize>) -> &str
[src]
fn index(&self, index: RangeToInclusive<usize>) -> &str
Performs the indexing (container[index]
) operation.
impl<Idx> PartialEq<RangeToInclusive<Idx>> for RangeToInclusive<Idx> where
Idx: PartialEq<Idx>,
[src]
impl<Idx> PartialEq<RangeToInclusive<Idx>> for RangeToInclusive<Idx> where
Idx: PartialEq<Idx>,
fn eq(&self, other: &RangeToInclusive<Idx>) -> bool
[src]
fn eq(&self, other: &RangeToInclusive<Idx>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &RangeToInclusive<Idx>) -> bool
[src]
fn ne(&self, other: &RangeToInclusive<Idx>) -> bool
This method tests for !=
.
impl<Idx> Copy for RangeToInclusive<Idx> where
Idx: Copy,
[src]
impl<Idx> Copy for RangeToInclusive<Idx> where
Idx: Copy,
impl<'a, T> RangeBounds<T> for RangeToInclusive<&'a T>
1.28.0[src]
impl<'a, T> RangeBounds<T> for RangeToInclusive<&'a T>
fn start_bound(&self) -> Bound<&T>
[src]
fn start_bound(&self) -> Bound<&T>
Start index bound. Read more
fn end_bound(&self) -> Bound<&T>
[src]
fn end_bound(&self) -> Bound<&T>
End index bound. Read more
fn contains<U>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,
[src]
fn contains<U>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,
🔬 This is a nightly-only experimental API. (range_contains
)
recently added as per RFC
Returns true
if item
is contained in the range. Read more
impl<T> RangeBounds<T> for RangeToInclusive<T>
1.28.0[src]
impl<T> RangeBounds<T> for RangeToInclusive<T>
fn start_bound(&self) -> Bound<&T>
[src]
fn start_bound(&self) -> Bound<&T>
Start index bound. Read more
fn end_bound(&self) -> Bound<&T>
[src]
fn end_bound(&self) -> Bound<&T>
End index bound. Read more
fn contains<U>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,
[src]
fn contains<U>(&self, item: &U) -> bool where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,
🔬 This is a nightly-only experimental API. (range_contains
)
recently added as per RFC
Returns true
if item
is contained in the range. Read more
impl Index<RangeToInclusive<usize>> for String
[src]
impl Index<RangeToInclusive<usize>> for String
type Output = str
The returned type after indexing.
fn index(&self, index: RangeToInclusive<usize>) -> &str
[src]
fn index(&self, index: RangeToInclusive<usize>) -> &str
Performs the indexing (container[index]
) operation.
impl IndexMut<RangeToInclusive<usize>> for String
[src]
impl IndexMut<RangeToInclusive<usize>> for String
fn index_mut(&mut self, index: RangeToInclusive<usize>) -> &mut str
[src]
fn index_mut(&mut self, index: RangeToInclusive<usize>) -> &mut str
Performs the mutable indexing (container[index]
) operation.
Auto Trait Implementations
impl<Idx> Send for RangeToInclusive<Idx> where
Idx: Send,
impl<Idx> Send for RangeToInclusive<Idx> where
Idx: Send,
impl<Idx> Sync for RangeToInclusive<Idx> where
Idx: Sync,
impl<Idx> Sync for RangeToInclusive<Idx> where
Idx: Sync,