Struct std::ops::RangeToInclusive
[−]
[src]
pub struct RangeToInclusive<Idx> { pub end: Idx, }
🔬 This is a nightly-only experimental API. (inclusive_range
)
recently added, follows RFC
An inclusive range which is only bounded above: { x | x <= end }.
Use ...end
(three dots) for its shorthand.
See the contains()
method for its characterization.
It cannot serve as an iterator because it doesn't have a starting point.
Examples
The ...{integer}
syntax is a RangeToInclusive
:
#![feature(inclusive_range,inclusive_range_syntax)] 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:
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
.
#![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 ]);
Fields
end: Idx
🔬 This is a nightly-only experimental API. (inclusive_range
)
recently added, follows RFC
The upper bound of the range (inclusive)
Methods
impl<Idx> RangeToInclusive<Idx> where Idx: PartialOrd<Idx>
[src]
fn contains(&self, item: Idx) -> bool
🔬 This is a nightly-only experimental API. (range_contains
)
recently added as per RFC
Examples
#![feature(range_contains,inclusive_range_syntax)] fn main() { assert!( (...5).contains(-1_000_000_000)); assert!( (...5).contains(5)); assert!( ! (...5).contains(6)); }
Trait Implementations
impl<Idx> Hash for RangeToInclusive<Idx> where Idx: Hash
[src]
fn hash<__HIdx>(&self, __arg_0: &mut __HIdx) where __HIdx: Hasher
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl<T> SliceIndex<T> for RangeToInclusive<usize>
1.13.0[src]
type Output = [T]
slice_get_slice
)The output type returned by methods.
fn get(self, slice: &[T]) -> Option<&[T]>
slice_get_slice
)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]>
slice_get_slice
)Returns a mutable reference to the output at this location, if in bounds. Read more
unsafe fn get_unchecked(self, slice: &[T]) -> &[T]
slice_get_slice
)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]
slice_get_slice
)Returns a mutable reference to the output at this location, without performing any bounds checking. Read more
fn index(self, slice: &[T]) -> &[T]
slice_get_slice
)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]
slice_get_slice
)Returns a mutable reference to the output at this location, panicking if out of bounds. Read more
impl<Idx> PartialEq<RangeToInclusive<Idx>> for RangeToInclusive<Idx> where Idx: PartialEq<Idx>
[src]
fn eq(&self, __arg_0: &RangeToInclusive<Idx>) -> bool
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
This method tests for !=
.
impl<Idx> Clone for RangeToInclusive<Idx> where Idx: Clone
[src]
fn clone(&self) -> RangeToInclusive<Idx>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more