W3cubDocs

/Rust

Struct RangeToInclusive

pub struct RangeToInclusive<Idx> {
    pub last: Idx,
}
πŸ”¬This is a nightly-only experimental API. (new_range_api #125687)

A range only bounded inclusively above (..=last).

The RangeToInclusive ..=last contains all values with x <= last. It cannot serve as an Iterator because it doesn’t have a starting point.

Examples

The ..=last syntax is a RangeToInclusive:

#![feature(new_range_api)]
#![feature(new_range)]
assert_eq!((..=5), std::range::RangeToInclusive{ last: 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::range::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 last.

let arr = [0, 1, 2, 3, 4];
assert_eq!(arr[ ..  ], [0, 1, 2, 3, 4]);
assert_eq!(arr[ .. 3], [0, 1, 2      ]);
assert_eq!(arr[ ..=3], [0, 1, 2, 3   ]); // This is a `RangeToInclusive`
assert_eq!(arr[1..  ], [   1, 2, 3, 4]);
assert_eq!(arr[1.. 3], [   1, 2      ]);
assert_eq!(arr[1..=3], [   1, 2, 3   ]);

Fields

last: Idx
πŸ”¬This is a nightly-only experimental API. (new_range_api #125687)

The upper bound of the range (inclusive)

Implementations

Source
impl<Idx> RangeToInclusive<Idx>where
    Idx: PartialOrd,
Source
pub const fn contains<U>(&self, item: &U) -> boolwhere
    Idx: PartialOrd<U>,
    U: PartialOrd<Idx> + ?Sized,
πŸ”¬This is a nightly-only experimental API. (new_range_api #125687)

Returns true if item is contained in the range.

Examples
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

Source
impl<Idx> Clone for RangeToInclusive<Idx>where
    Idx: Clone,
Source
fn clone(&self) -> RangeToInclusive<Idx>
Returns a duplicate of the value. Read more
1.0.0Source
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Source
impl<Idx> Debug for RangeToInclusive<Idx>where
    Idx: Debug,
Source
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>
Formats the value using the given formatter. Read more
Source
impl<T> From<RangeToInclusive<T>> for RangeToInclusive<T>
Source
fn from(value: RangeToInclusive<T>) -> RangeToInclusive<T>
Converts to this type from the input type.
Source
impl<T> From<RangeToInclusive<T>> for RangeToInclusive<T>
Source
fn from(value: RangeToInclusive<T>) -> RangeToInclusive<T>
Converts to this type from the input type.
Source
impl<Idx> Hash for RangeToInclusive<Idx>where
    Idx: Hash,
Source
fn hash<__H>(&self, state: &mut __H)where
    __H: Hasher,
Feeds this value into the given Hasher. Read more
1.3.0Source
fn hash_slice<H>(data: &[Self], state: &mut H)where
    H: Hasher,
    Self: Sized,
Feeds a slice of this type into the given Hasher. Read more
Source
impl<T> IntoBounds<T> for RangeToInclusive<T>
Source
fn into_bounds(self) -> (Bound<T>, Bound<T>)
πŸ”¬This is a nightly-only experimental API. (range_into_bounds #136903)
Convert this range into the start and end bounds. Returns (start_bound, end_bound). Read more
Source
fn intersect<R>(self, other: R) -> (Bound<T>, Bound<T>)where
    Self: Sized,
    T: Ord,
    R: IntoBounds<T>,
πŸ”¬This is a nightly-only experimental API. (range_into_bounds #136903)
Compute the intersection of self and other. Read more
Source
impl<Idx> PartialEq for RangeToInclusive<Idx>where
    Idx: PartialEq,
Source
fn eq(&self, other: &RangeToInclusive<Idx>) -> bool
Tests for self and other values to be equal, and is used by ==.
1.0.0Source
fn ne(&self, other: &Rhs) -> bool
Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source
impl<T> RangeBounds<T> for RangeToInclusive<T>
Source
fn start_bound(&self) -> Bound<&T>
Start index bound. Read more
Source
fn end_bound(&self) -> Bound<&T>
End index bound. Read more
1.35.0Source
fn contains<U>(&self, item: &U) -> boolwhere
    T: PartialOrd<U>,
    U: PartialOrd<T> + ?Sized,
Returns true if item is contained in the range. Read more
Source
fn is_empty(&self) -> boolwhere
    T: PartialOrd,
πŸ”¬This is a nightly-only experimental API. (range_bounds_is_empty #137300)
Returns true if the range contains no items. One-sided ranges (RangeFrom, etc) always return false. Read more
1.26.0 (const: unstable)Source
impl<T> SliceIndex<[T]> for RangeToInclusive<usize>The methods index and index_mut panic if the end of the range is out of bounds.
Source
type Output = [T]
The output type returned by methods.
Source
fn get(self, slice: &[T]) -> Option<&[T]>
πŸ”¬This is a nightly-only experimental API. (slice_index_methods)
Returns a shared reference to the output at this location, if in bounds.
Source
fn get_mut(self, slice: &mut [T]) -> Option<&mut [T]>
πŸ”¬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable reference to the output at this location, if in bounds.
Source
unsafe fn get_unchecked(self, slice: *const [T]) -> *const [T]
πŸ”¬This is a nightly-only experimental API. (slice_index_methods)
Returns a pointer to the output at this location, without performing any bounds checking. Read more
Source
unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut [T]
πŸ”¬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable pointer to the output at this location, without performing any bounds checking. Read more
Source
fn index(self, slice: &[T]) -> &[T]
πŸ”¬This is a nightly-only experimental API. (slice_index_methods)
Returns a shared reference to the output at this location, panicking if out of bounds.
Source
fn index_mut(self, slice: &mut [T]) -> &mut [T]
πŸ”¬This is a nightly-only experimental API. (slice_index_methods)
Returns a mutable reference to the output at this location, panicking if out of bounds.
Source
impl<Idx> Copy for RangeToInclusive<Idx>where
    Idx: Copy,
Source
impl<Idx> Eq for RangeToInclusive<Idx>where
    Idx: Eq,
Source
impl<Idx> StructuralPartialEq for RangeToInclusive<Idx>

Auto Trait Implementations

impl<Idx> Freeze for RangeToInclusive<Idx>where
    Idx: Freeze,
impl<Idx> RefUnwindSafe for RangeToInclusive<Idx>where
    Idx: RefUnwindSafe,
impl<Idx> Send for RangeToInclusive<Idx>where
    Idx: Send,
impl<Idx> Sync for RangeToInclusive<Idx>where
    Idx: Sync,
impl<Idx> Unpin for RangeToInclusive<Idx>where
    Idx: Unpin,
impl<Idx> UnwindSafe for RangeToInclusive<Idx>where
    Idx: UnwindSafe,

Blanket Implementations

Source
impl<T> Any for Twhere
    T: 'static + ?Sized,
Source
fn type_id(&self) -> TypeId
Gets the TypeId of self. Read more
Source
impl<T> Borrow<T> for Twhere
    T: ?Sized,
Source
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
Source
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source
impl<T> CloneToUninit for Twhere
    T: Clone,
Source
unsafe fn clone_to_uninit(&self, dest: *mut u8)
πŸ”¬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dest. Read more
Source
impl<T> From<T> for T
Source
fn from(t: T) -> T

Returns the argument unchanged.

Source
impl<T, U> Into<U> for Twhere
    U: From<T>,
Source
fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source
impl<T> ToOwned for Twhere
    T: Clone,
Source
type Owned = T
The resulting type after obtaining ownership.
Source
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
Source
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more
Source
impl<T, U> TryFrom<U> for Twhere
    U: Into<T>,
Source
type Error = Infallible
The type returned in the event of a conversion error.
Source
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
Performs the conversion.
Source
impl<T, U> TryInto<U> for Twhere
    U: TryFrom<T>,
Source
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
Source
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
Performs the conversion.

Β© 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/range/struct.RangeToInclusive.html