Struct core::ops::RangeToInclusive
1.26.0 · source · pub struct RangeToInclusive<Idx> {
pub end: Idx,
}
Expand description
范围仅包括 (..=end
) 以上的范围。
RangeToInclusive
..=end
包含 x <= end
的所有值。
它不能用作 Iterator
,因为它没有起点。
Examples
..=end
语法是 RangeToInclusive
:
assert_eq!((..=5), std::ops::RangeToInclusive{ end: 5 });
Run它没有 IntoIterator
实现,因此不能直接在 for
循环中使用它。这不会编译:
ⓘ
// error[E0277]: the trait bound `std::ops::RangeToInclusive<{integer}>:
// std::Iterator` 不满足
for i in ..=5 {
// ...
}
Run当用作 切片索引 时,RangeToInclusive
会生成所有数组元素的切片,直到并包括 end
指示的索引。
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 ]); // 这是 `RangeToInclusive`
assert_eq!(arr[1.. ], [ 1, 2, 3, 4]);
assert_eq!(arr[1.. 3], [ 1, 2 ]);
assert_eq!(arr[1..=3], [ 1, 2, 3 ]);
RunFields§
§end: Idx
范围的上限 (包含上限)
Implementations§
source§impl<Idx: PartialOrd<Idx>> RangeToInclusive<Idx>
impl<Idx: PartialOrd<Idx>> RangeToInclusive<Idx>
1.35.0 · sourcepub fn contains<U>(&self, item: &U) -> boolwhere
Idx: PartialOrd<U>,
U: ?Sized + PartialOrd<Idx>,
pub fn contains<U>(&self, item: &U) -> boolwhere Idx: PartialOrd<U>, U: ?Sized + PartialOrd<Idx>,
Trait Implementations§
source§impl<Idx: Clone> Clone for RangeToInclusive<Idx>
impl<Idx: Clone> Clone for RangeToInclusive<Idx>
source§fn clone(&self) -> RangeToInclusive<Idx>
fn clone(&self) -> RangeToInclusive<Idx>
返回值的副本。 Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
从
source
执行复制分配。 Read moresource§impl<Idx: Debug> Debug for RangeToInclusive<Idx>
impl<Idx: Debug> Debug for RangeToInclusive<Idx>
source§impl<Idx: Hash> Hash for RangeToInclusive<Idx>
impl<Idx: Hash> Hash for RangeToInclusive<Idx>
source§impl<Idx: PartialEq> PartialEq<RangeToInclusive<Idx>> for RangeToInclusive<Idx>
impl<Idx: PartialEq> PartialEq<RangeToInclusive<Idx>> for RangeToInclusive<Idx>
1.28.0 · source§impl<T> RangeBounds<T> for RangeToInclusive<&T>
impl<T> RangeBounds<T> for RangeToInclusive<&T>
1.28.0 · source§impl<T> RangeBounds<T> for RangeToInclusive<T>
impl<T> RangeBounds<T> for RangeToInclusive<T>
const: unstable · source§impl<T> SliceIndex<[T]> for RangeToInclusive<usize>
impl<T> SliceIndex<[T]> for RangeToInclusive<usize>
const: unstable · source§fn get(self, slice: &[T]) -> Option<&[T]>
fn get(self, slice: &[T]) -> Option<&[T]>
🔬This is a nightly-only experimental API. (
slice_index_methods
)如果在边界内,则返回此位置输出的共享引用。
const: unstable · source§fn get_mut(self, slice: &mut [T]) -> Option<&mut [T]>
fn get_mut(self, slice: &mut [T]) -> Option<&mut [T]>
🔬This is a nightly-only experimental API. (
slice_index_methods
)如果在边界内,则对此位置的输出返回一个可变引用。
const: unstable · source§unsafe fn get_unchecked(self, slice: *const [T]) -> *const [T]
unsafe fn get_unchecked(self, slice: *const [T]) -> *const [T]
🔬This is a nightly-only experimental API. (
slice_index_methods
)返回此位置输出的共享引用,而不执行任何边界检查。
即使未使用所得的引用,使用越界索引或悬垂的
slice
指针调用此方法也是 [undefined 行为]。const: unstable · source§unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut [T]
unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut [T]
🔬This is a nightly-only experimental API. (
slice_index_methods
)返回此位置输出的变量引用,而不执行任何边界检查。
即使未使用所得的引用,使用越界索引或悬垂的
slice
指针调用此方法也是 [undefined 行为]。const: unstable · source§impl SliceIndex<str> for RangeToInclusive<usize>
impl SliceIndex<str> for RangeToInclusive<usize>
使用语法 &self[..= end]
或 &mut self[..= end]
实现子字符串切片。
从字节范围 [0, end
] 中返回给定字符串的切片。
等效于 &self [0 .. end + 1]
,除非 end
具有 usize
的最大值。
此运算为 O(1)。
Panics
如果 end
没有指向字符的结束字节偏移量 (end + 1
是 is_char_boundary
定义的起始字节偏移量,或者等于 len
),或者如果 end >= len
,就会出现 panics。
const: unstable · source§fn get(self, slice: &str) -> Option<&Self::Output>
fn get(self, slice: &str) -> Option<&Self::Output>
🔬This is a nightly-only experimental API. (
slice_index_methods
)如果在边界内,则返回此位置输出的共享引用。
const: unstable · source§fn get_mut(self, slice: &mut str) -> Option<&mut Self::Output>
fn get_mut(self, slice: &mut str) -> Option<&mut Self::Output>
🔬This is a nightly-only experimental API. (
slice_index_methods
)如果在边界内,则对此位置的输出返回一个可变引用。
const: unstable · source§unsafe fn get_unchecked(self, slice: *const str) -> *const Self::Output
unsafe fn get_unchecked(self, slice: *const str) -> *const Self::Output
🔬This is a nightly-only experimental API. (
slice_index_methods
)返回此位置输出的共享引用,而不执行任何边界检查。
即使未使用所得的引用,使用越界索引或悬垂的
slice
指针调用此方法也是 [undefined 行为]。const: unstable · source§unsafe fn get_unchecked_mut(self, slice: *mut str) -> *mut Self::Output
unsafe fn get_unchecked_mut(self, slice: *mut str) -> *mut Self::Output
🔬This is a nightly-only experimental API. (
slice_index_methods
)返回此位置输出的变量引用,而不执行任何边界检查。
即使未使用所得的引用,使用越界索引或悬垂的
slice
指针调用此方法也是 [undefined 行为]。