Struct std::ops::Range
范围 start..end 包含 start <= x < end 的所有值。 如果为 start >= end,则为空。
pub struct Range<Idx> {
pub start: Idx,
pub end: Idx,
}RangeFrom的语法是start..end :使用这种语法内部会自动转化为Range实例
assert_eq!((3..5), std::ops::Range { start: 3, end: 5 });
assert_eq!(3 + 4 + 5, (3..6).sum());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 ]);
assert_eq!(arr[1.. ], [ 1, 2, 3, 4]);
assert_eq!(arr[1.. 3], [ 1, 2 ]); // 这是 `Range`
assert_eq!(arr[1..=3], [ 1, 2, 3 ]);字段
start
范围的下限 (包括)。
start: Idxend
范围 (exclusive) 的上限(不包括)
end: IdxImplementations
impl<Idx> Range<Idx>
impl<Idx> Range<Idx>
where
Idx: PartialOrd<Idx>,contains
如果范围中包含 item,则返回 true。
pub fn contains<U>(&self, item: &U) -> bool
where
Idx: PartialOrd<U>,
U: PartialOrd<Idx> + ?Sized,参数:
- item:需要判断是否包含的项
返回值:根据是否包含返回bool值
assert!(!(3..5).contains(&2));
assert!( (3..5).contains(&3));
assert!( (3..5).contains(&4));
assert!(!(3..5).contains(&5));
assert!(!(3..3).contains(&3));
assert!(!(3..2).contains(&3));
assert!( (0.0..1.0).contains(&0.5));
assert!(!(0.0..1.0).contains(&f32::NAN));
assert!(!(0.0..f32::NAN).contains(&0.5));
assert!(!(f32::NAN..1.0).contains(&0.5));is_empty
如果范围不包含任何项,则返回 true。
pub fn is_empty(&self) -> bool返回值:根据是否为空,返回bool值
assert!(!(3..5).is_empty());
assert!( (3..3).is_empty());
assert!( (3..2).is_empty());如果任何一方都无法比拟,则范围为空:
assert!(!(3.0..5.0).is_empty());
assert!( (3.0..f32::NAN).is_empty());
assert!( (f32::NAN..5.0).is_empty());Trait Implementations
impl<Idx> Clone for Range<Idx>
impl<Idx> Clone for Range<Idx>
where
Idx: Clone,clone
返回值的副本。
fn clone(&self) -> Range<Idx>clone_from
从 source执行复制分配。
fn clone_from(&mut self, source: &Self)impl<Idx> Debug for Range<Idx>
impl<Idx> Debug for Range<Idx>
where
Idx: Debug,fmt
使用给定的格式化程序格式化该值。
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>impl<Idx> Default for Range<Idx>
impl<Idx> Default for Range<Idx>
where
Idx: Default,default
返回类型的 “默认值”。
fn default() -> Range<Idx>impl<A> DoubleEndedIterator for Range<A>
impl<A> DoubleEndedIterator for Range<A>
where
A: Step,next_back
从迭代器的末尾删除并返回一个元素。
fn next_back(&mut self) -> Option<A>nth_back
从迭代器的末尾返回第 n 个元素。
fn nth_back(&mut self, n: usize) -> Option<A>advance_back_by
nightly-only 通过 n 元素从后向前推进迭代器。
fn advance_back_by(&mut self, n: usize) -> Result<(), NonZeroUsize>try_rfold
这是 Iterator::try_fold() 的反向版本:它从迭代器的后面开始接收元素。
fn try_rfold<B, F, R>(&mut self, init: B, f: F) -> R
where
Self: Sized,
F: FnMut(B, Self::Item) -> R,
R: Try<Output = B>,rfold
一种迭代器方法,从后面开始,将迭代器的元素减少为单个最终值。
fn rfold<B, F>(self, init: B, f: F) -> B
where
Self: Sized,
F: FnMut(B, Self::Item) -> B,rfind
从后面搜索满足谓词的迭代器的元素。
fn rfind<P>(&mut self, predicate: P) -> Option<Self::Item>
where
Self: Sized,
P: FnMut(&Self::Item) -> bool,impl ExactSizeIterator for Range<i16>
len
返回迭代器的确切剩余长度。
fn len(&self) -> usizeis_empty
nightly-only
如果迭代器为空,则返回 true。
impl ExactSizeIterator for Range<i32>
len
返回迭代器的确切剩余长度。
fn len(&self) -> usizeis_empty
nightly-only
如果迭代器为空,则返回 true。
fn is_empty(&self) -> boolimpl ExactSizeIterator for Range<i8>
len
返回迭代器的确切剩余长度。
fn len(&self) -> usizeis_empty
nightly-only
如果迭代器为空,则返回 true。
fn is_empty(&self) -> boolimpl ExactSizeIterator for Range<isize>
len
返回迭代器的确切剩余长度。
fn len(&self) -> usizeis_empty
nightly-only
如果迭代器为空,则返回 true。
fn is_empty(&self) -> boolimpl ExactSizeIterator for Range<u16>
len
返回迭代器的确切剩余长度。
fn len(&self) -> usizeis_empty
nightly-only
如果迭代器为空,则返回 true。
fn is_empty(&self) -> boolimpl ExactSizeIterator for Range<u32>
len
返回迭代器的确切剩余长度。
fn len(&self) -> usizeis_empty
nightly-only
如果迭代器为空,则返回 true。
fn is_empty(&self) -> boolimpl ExactSizeIterator for Range<u8>
len
返回迭代器的确切剩余长度。
fn len(&self) -> usizeis_empty
nightly-only
如果迭代器为空,则返回 true。
fn is_empty(&self) -> boolimpl ExactSizeIterator for Range<usize>
len
返回迭代器的确切剩余长度。
fn len(&self) -> usizeis_empty
nightly-only
如果迭代器为空,则返回 true。
fn is_empty(&self) -> boolimpl<Idx> Hash for Range<Idx>
impl<Idx> Hash for Range<Idx>
where
Idx: Hash,hash
将该值输入给定的 Hasher。
fn hash<__H>(&self, state: &mut __H)
where
__H: Hasher,hash_slice
将这种类型的切片送入给定的 Hasher 中。
fn hash_slice<H>(data: &[Self], state: &mut H)
where
H: Hasher,
Self: Sized,impl Index<Range<usize>> for String
Output
索引后返回的类型。
type Output = strindex
执行索引 container[index] 操作。
fn index(&self, index: Range<usize>) -> &strimpl IndexMut<Range<usize>> for String
index_mut
执行可变索引 (container[index]) 操作。
fn index_mut(&mut self, index: Range<usize>) -> &mut strimpl<A> Iterator for Range<A>
impl<A> Iterator for Range<A>
where
A: Step,Item
被迭代的元素的类型。
type Item = Anext
推进迭代器并返回下一个值。
fn next(&mut self) -> Option<A>size_hint
返回迭代器剩余长度的界限。
fn size_hint(&self) -> (usize, Option<usize>)nth
返回迭代器的第 n 个元素。
fn nth(&mut self, n: usize) -> Option<A>last
消耗迭代器,返回最后一个元素。
fn last(self) -> Option<A>min
返回迭代器的最小元素。
fn min(self) -> Option<A>
where
A: Ord,max
返回迭代器的最大元素。
fn max(self) -> Option<A>
where
A: Ord,is_sorted
nightly-only 检查此迭代器的元素是否已排序。
fn is_sorted(self) -> booladvance_by
nightly-only 通过 n 元素使迭代器前进。
fn advance_by(&mut self, n: usize) -> Result<(), NonZeroUsize>next_chunk
nightly-only 推进迭代器并返回包含下一个 N 值的数组。
fn next_chunk<const N: usize>(
&mut self
) -> Result<[Self::Item; N], IntoIter<Self::Item, N>>
where
Self: Sized,count
消耗迭代器,计算迭代次数并返回它。
fn count(self) -> usize
where
Self: Sized,step_by
创建一个从同一点开始的迭代器,但在每次迭代时以给定的数量逐步执行。
fn step_by(self, step: usize) -> StepBy<Self>
where
Self: Sized,chain
接受两个迭代器,并依次在两个迭代器上创建一个新的迭代器。
fn chain<U>(self, other: U) -> Chain<Self, <U as IntoIterator>::IntoIter>
where
Self: Sized,
U: IntoIterator<Item = Self::Item>,zip
将两个迭代器压缩为成对的单个迭代器。
fn zip<U>(self, other: U) -> Zip<Self, <U as IntoIterator>::IntoIter>
where
Self: Sized,
U: IntoIterator,intersperse_with
nightly-only 创建一个新的迭代器,该迭代器将 separator 生成的项放在原始迭代器的相邻项之间。
fn intersperse_with<G>(self, separator: G) -> IntersperseWith<Self, G>
where
Self: Sized,
G: FnMut() -> Self::Item,map
获取一个闭包并创建一个迭代器,该迭代器在每个元素上调用该闭包。
fn map<B, F>(self, f: F) -> Map<Self, F>
where
Self: Sized,
F: FnMut(Self::Item) -> B,for_each
在迭代器的每个元素上调用一个闭包。
fn for_each<F>(self, f: F)
where
Self: Sized,
F: FnMut(Self::Item),filter
创建一个迭代器,该迭代器使用闭包确定是否应产生元素。
fn filter<P>(self, predicate: P) -> Filter<Self, P>
where
Self: Sized,
P: FnMut(&Self::Item) -> bool,filter_map
创建一个同时过滤和映射的迭代器。
fn filter_map<B, F>(self, f: F) -> FilterMap<Self, F>
where
Self: Sized,
F: FnMut(Self::Item) -> Option<B>,enumerate
创建一个迭代器,该迭代器给出当前迭代次数以及下一个值。
fn enumerate(self) -> Enumerate<Self>
where
Self: Sized,peekable
创建一个迭代器,它可以使用 peek 和 peek_mut 方法查看迭代器的下一个元素而不消耗它。有关更多信息,请参见他们的文档。
fn peekable(self) -> Peekable<Self>
where
Self: Sized,skip_while
创建一个迭代器,该迭代器基于谓词 skip 元素。
fn skip_while<P>(self, predicate: P) -> SkipWhile<Self, P>
where
Self: Sized,
P: FnMut(&Self::Item) -> bool,take_while
创建一个迭代器,该迭代器根据谓词产生元素。
fn take_while<P>(self, predicate: P) -> TakeWhile<Self, P>
where
Self: Sized,
P: FnMut(&Self::Item) -> bool,map_while
创建一个迭代器,该迭代器均基于谓词和映射生成元素。
fn map_while<B, P>(self, predicate: P) -> MapWhile<Self, P>
where
Self: Sized,
P: FnMut(Self::Item) -> Option<B>,skip
创建一个跳过前 n 个元素的迭代器。
fn skip(self, n: usize) -> Skip<Self>
where
Self: Sized,take
创建一个迭代器,它产生第一个 n 元素,如果底层迭代器提前结束,则产生更少的元素。
fn take(self, n: usize) -> Take<Self>
where
Self: Sized,scan
一个迭代器适配器,它与 fold 一样保存内部状态,但与 fold 不同,它生成一个新的迭代器。
fn scan<St, B, F>(self, initial_state: St, f: F) -> Scan<Self, St, F>
where
Self: Sized,
F: FnMut(&mut St, Self::Item) -> Option<B>,flat_map
创建一个迭代器,其工作方式类似于 map,但它会将嵌套的结构展平。
fn flat_map<U, F>(self, f: F) -> FlatMap<Self, U, F>
where
Self: Sized,
U: IntoIterator,
F: FnMut(Self::Item) -> U,fuse
创建一个迭代器,该迭代器在第一个 None 之后结束。
fn fuse(self) -> Fuse<Self>
where
Self: Sized,inspect
对迭代器的每个元素执行某些操作,将值传递给它。
fn inspect<F>(self, f: F) -> Inspect<Self, F>
where
Self: Sized,
F: FnMut(&Self::Item),by_ref
借用一个迭代器,而不是使用它。
fn by_ref(&mut self) -> &mut Self
where
Self: Sized,collect
将迭代器转换为集合。
fn collect<B>(self) -> B
where
B: FromIterator<Self::Item>,
Self: Sized,collect_into
nightly-only 将迭代器中的所有项收集到一个集合中。
fn collect_into<E>(self, collection: &mut E) -> &mut E
where
E: Extend<Self::Item>,
Self: Sized,partition
消耗一个迭代器,从中创建两个集合。
fn partition<B, F>(self, f: F) -> (B, B)
where
Self: Sized,
B: Default + Extend<Self::Item>,
F: FnMut(&Self::Item) -> bool,partition_in_place
nightly-only 根据给定的谓词,对迭代器的元素进行就地重新排序,以使所有返回 true 的元素都在所有返回 false 的元素之前。 返回找到的 true 元素的数量。
fn partition_in_place<'a, T, P>(self, predicate: P) -> usize
where
T: 'a,
Self: Sized + DoubleEndedIterator<Item = &'a mut T>,
P: FnMut(&T) -> bool,is_partitioned
nightly-only 检查此迭代器的元素是否根据给定的谓词进行了分区,以便所有返回 true 的元素都在所有返回 false 的元素之前。
fn is_partitioned<P>(self, predicate: P) -> bool
where
Self: Sized,
P: FnMut(Self::Item) -> bool,try_fold
一个迭代器方法,它只要成功返回就应用函数,并产生单个最终值。
fn try_fold<B, F, R>(&mut self, init: B, f: F) -> R
where
Self: Sized,
F: FnMut(B, Self::Item) -> R,
R: Try<Output = B>,try_for_each
一个迭代器方法,该方法将一个容易犯错的函数应用于迭代器中的每个项,在第一个错误处停止并返回该错误。
fn try_for_each<F, R>(&mut self, f: F) -> R
where
Self: Sized,
F: FnMut(Self::Item) -> R,
R: Try<Output = ()>,fold
通过应用操作将每个元素 fold 到一个累加器中,返回最终结果。
fn fold<B, F>(self, init: B, f: F) -> B
where
Self: Sized,
F: FnMut(B, Self::Item) -> B,reduce
通过重复应用缩减操作,将元素缩减为一个。
fn reduce<F>(self, f: F) -> Option<Self::Item>
where
Self: Sized,
F: FnMut(Self::Item, Self::Item) -> Self::Item,try_reduce
nightly-only 通过重复应用 Reduce 操作,将元素归约为单个元素。 如果闭包返回失败,则失败会立即传播给调用者。
fn try_reduce<F, R>(
&mut self,
f: F
) -> <<R as Try>::Residual as Residual<Option<<R as Try>::Output>>>::TryType
where
Self: Sized,
F: FnMut(Self::Item, Self::Item) -> R,
R: Try<Output = Self::Item>,
<R as Try>::Residual: Residual<Option<Self::Item>>,all
测试迭代器的每个元素是否与谓词匹配。
fn all<F>(&mut self, f: F) -> bool
where
Self: Sized,
F: FnMut(Self::Item) -> bool,any
测试迭代器的任何元素是否与谓词匹配。
fn any<F>(&mut self, f: F) -> bool
where
Self: Sized,
F: FnMut(Self::Item) -> bool,find
搜索满足谓词的迭代器的元素。
fn find<P>(&mut self, predicate: P) -> Option<Self::Item>
where
Self: Sized,
P: FnMut(&Self::Item) -> bool,find_map
将函数应用于迭代器的元素,并返回第一个非 None 的结果。
fn find_map<B, F>(&mut self, f: F) -> Option<B>
where
Self: Sized,
F: FnMut(Self::Item) -> Option<B>,try_find
nightly-only 将函数应用于迭代器的元素,并返回第一个为 true 的结果或第一个错误。
fn try_find<F, R>(
&mut self,
f: F
) -> <<R as Try>::Residual as Residual<Option<Self::Item>>>::TryType
where
Self: Sized,
F: FnMut(&Self::Item) -> R,
R: Try<Output = bool>,
<R as Try>::Residual: Residual<Option<Self::Item>>,position
在迭代器中搜索元素,并返回其索引。
fn position<P>(&mut self, predicate: P) -> Option<usize>
where
Self: Sized,
P: FnMut(Self::Item) -> bool,max_by_key
返回给出指定函数最大值的元素。
fn max_by_key<B, F>(self, f: F) -> Option<Self::Item>
where
B: Ord,
Self: Sized,
F: FnMut(&Self::Item) -> B,max_by
返回给出相对于指定比较函数的最大值的元素。
fn max_by<F>(self, compare: F) -> Option<Self::Item>
where
Self: Sized,
F: FnMut(&Self::Item, &Self::Item) -> Ordering,min_by_key
返回给出指定函数中最小值的元素。
fn min_by_key<B, F>(self, f: F) -> Option<Self::Item>
where
B: Ord,
Self: Sized,
F: FnMut(&Self::Item) -> B,min_by
返回给出相对于指定比较函数的最小值的元素。
fn min_by<F>(self, compare: F) -> Option<Self::Item>
where
Self: Sized,
F: FnMut(&Self::Item, &Self::Item) -> Ordering,rev
反转迭代器的方向。
fn rev(self) -> Rev<Self>
where
Self: Sized + DoubleEndedIterator,unzip
将成对的迭代器转换为一对容器。
fn unzip<A, B, FromA, FromB>(self) -> (FromA, FromB)
where
FromA: Default + Extend<A>,
FromB: Default + Extend<B>,
Self: Sized + Iterator<Item = (A, B)>,copied
创建一个迭代器,该迭代器将复制其所有元素。
fn copied<'a, T>(self) -> Copied<Self>
where
T: 'a + Copy,
Self: Sized + Iterator<Item = &'a T>,cloned
创建一个迭代器,该迭代器将克隆所有元素。
fn cloned<'a, T>(self) -> Cloned<Self>
where
T: 'a + Clone,
Self: Sized + Iterator<Item = &'a T>,cycle
不断重复的迭代器。
fn cycle(self) -> Cycle<Self>
where
Self: Sized + Clone,array_chunks
nightly-only 一次返回迭代器的 N 个元素的迭代器。
fn array_chunks<const N: usize>(self) -> ArrayChunks<Self, N>
where
Self: Sized,sum
对迭代器的元素求和。
fn sum<S>(self) -> S
where
Self: Sized,
S: Sum<Self::Item>,product
遍历整个迭代器,将所有元素相乘
fn product<P>(self) -> P
where
Self: Sized,
P: Product<Self::Item>,cmp_by
nightly-only 字典顺序 根据指定的比较函数将这个 Iterator 的元素与另一个 Iterator 的元素进行比较。
fn cmp_by<I, F>(self, other: I, cmp: F) -> Ordering
where
Self: Sized,
I: IntoIterator,
F: FnMut(Self::Item, <I as IntoIterator>::Item) -> Ordering,partial_cmp
Lexicographically 将此 Iterator 的 PartialOrd 元素与另一个 PartialOrd 的元素进行比较。 比较的工作方式类似于短路评估,返回结果而不比较其余元素。 一旦可以确定订单,评估就会停止并返回结果。
fn partial_cmp<I>(self, other: I) -> Option<Ordering>
where
I: IntoIterator,
Self::Item: PartialOrd<<I as IntoIterator>::Item>,
Self: Sized,partial_cmp_by
nightly-only 字典顺序 根据指定的比较函数将这个 Iterator 的元素与另一个 Iterator 的元素进行比较。
fn partial_cmp_by<I, F>(self, other: I, partial_cmp: F) -> Option<Ordering>
where
Self: Sized,
I: IntoIterator,
F: FnMut(Self::Item, <I as IntoIterator>::Item) -> Option<Ordering>,eq
确定此 Iterator 的元素是否与另一个元素相同。
fn eq<I>(self, other: I) -> bool
where
I: IntoIterator,
Self::Item: PartialEq<<I as IntoIterator>::Item>,
Self: Sized,eq_by
nightly-only 关于指定的相等函数,确定 Iterator 的元素是否与另一个元素相等。
fn eq_by<I, F>(self, other: I, eq: F) -> bool
where
Self: Sized,
I: IntoIterator,
F: FnMut(Self::Item, <I as IntoIterator>::Item) -> bool,ne
确定此 Iterator 的元素是否不等于另一个的元素。
fn ne<I>(self, other: I) -> bool
where
I: IntoIterator,
Self::Item: PartialEq<<I as IntoIterator>::Item>,
Self: Sized,lt
确定此 Iterator 的元素是否比另一个元素少 按字典顺序。
fn lt<I>(self, other: I) -> bool
where
I: IntoIterator,
Self::Item: PartialOrd<<I as IntoIterator>::Item>,
Self: Sized,le
确定此 Iterator 的元素是否 按字典顺序 小于或等于另一个元素。
fn le<I>(self, other: I) -> bool
where
I: IntoIterator,
Self::Item: PartialOrd<<I as IntoIterator>::Item>,
Self: Sized,gt
确定此 Iterator 的元素是否大于另一个元素的 按字典顺序。
fn gt<I>(self, other: I) -> bool
where
I: IntoIterator,
Self::Item: PartialOrd<<I as IntoIterator>::Item>,
Self: Sized,ge
确定此 Iterator 的元素是否 按字典顺序 大于或等于另一个元素。
fn ge<I>(self, other: I) -> bool
where
I: IntoIterator,
Self::Item: PartialOrd<<I as IntoIterator>::Item>,
Self: Sized,is_sorted_by
nightly-only 检查此迭代器的元素是否使用给定的比较器函数进行排序。
fn is_sorted_by<F>(self, compare: F) -> bool
where
Self: Sized,
F: FnMut(&Self::Item, &Self::Item) -> Option<Ordering>,is_sorted_by_key
nightly-only 检查此迭代器的元素是否使用给定的键提取函数进行排序。
fn is_sorted_by_key<F, K>(self, f: F) -> bool
where
Self: Sized,
F: FnMut(Self::Item) -> K,
K: PartialOrd<K>,impl<Idx> PartialEq<Range<Idx>> for Range<Idx>
impl<Idx> PartialEq<Range<Idx>> for Range<Idx>
where
Idx: PartialEq<Idx>,eq
此方法测试 self 和 other 值是否相等,并由 == 使用。
fn eq(&self, other: &Range<Idx>) -> boolne
此方法测试 !=。 默认实现几乎总是足够的,并且不应在没有充分理由的情况下被覆盖。
fn ne(&self, other: &Rhs) -> boolimpl<T> RangeBounds<T> for Range<&T>
start_bound
开始索引绑定。
fn start_bound(&self) -> Bound<&T>end_bound
结束索引绑定。
fn end_bound(&self) -> Bound<&T>contains
如果范围中包含 item,则返回 true。
fn contains<U>(&self, item: &U) -> bool
where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,impl<T> RangeBounds<T> for Range<T>
start_bound
开始索引绑定。
fn start_bound(&self) -> Bound<&T>end_bound
结束索引绑定。
fn end_bound(&self) -> Bound<&T>contains
nightly-only
如果范围中包含 item,则返回 true。
fn contains<U>(&self, item: &U) -> bool
where
T: PartialOrd<U>,
U: PartialOrd<T> + ?Sized,impl<T> SliceIndex<[T]> for Range<usize>
Output
方法返回的输出类型。
type Output = [T]get
nightly-only 如果在边界内,则返回此位置输出的共享引用。
fn get(self, slice: &[T]) -> Option<&[T]>get_mut
nightly-only 如果在边界内,则对此位置的输出返回一个可变引用。
fn get_mut(self, slice: &mut [T]) -> Option<&mut [T]>get_unchecked
nightly-only 返回此位置输出的共享引用,而不执行任何边界检查。 即使未使用所得的引用,使用越界索引或悬垂的 slice 指针调用此方法也是 [undefined 行为]。
unsafe fn get_unchecked(self, slice: *const [T]) -> *const [T]get_unchecked_mut
nightly-only 返回此位置输出的变量引用,而不执行任何边界检查。 即使未使用所得的引用,使用越界索引或悬垂的 slice 指针调用此方法也是 [undefined 行为]。
unsafe fn get_unchecked_mut(self, slice: *mut [T]) -> *mut [T]index
nightly-only 返回此位置输出的共享引用,如果越界则会触发 panic。
fn index(self, slice: &[T]) -> &[T]index_mut
nightly-only 返回此位置输出的变量引用,如果越界则会触发 panic。
fn index_mut(self, slice: &mut [T]) -> &mut [T]impl SliceIndex<str> for Range<usize>
使用语法 &self[begin .. end] 或 &mut self[begin .. end] 实现子字符串切片。
从字节范围 [begin,end) 返回给定字符串的切片。
此运算为 O(1)。
在 1.20.0 之前,Index 和 IndexMut 的直接实现仍支持这些索引操作。
Panics
如果 begin 或 end 未指向字符的起始字节偏移量 (由 is_char_boundary 定义),begin > end 或 end > len,就会出现 panics。
Examples
let s = "Löwe 老虎 Léopard";
assert_eq!(&s[0 .. 1], "L");
assert_eq!(&s[1 .. 9], "öwe 老");
// 这些将是 panic:
// 字节 2 位于 `ö` 内:
// &s[2 ..3];
// byte 8 lies within `老` &s[1 ..
// 8];
// 字节 100 在字符串 &s[3 之外。
// 100];方法返回的输出类型。
type Output = strget
nightly-only 如果在边界内,则返回此位置输出的共享引用。
fn get(self, slice: &str) -> Option<&<Range<usize> as SliceIndex<str>>::Output>get_mut
nightly-only 如果在边界内,则对此位置的输出返回一个可变引用。
fn get_mut(
self,
slice: &mut str
) -> Option<&mut <Range<usize> as SliceIndex<str>>::Output>get_unchecked
nightly-only 返回此位置输出的共享引用,而不执行任何边界检查。 即使未使用所得的引用,使用越界索引或悬垂的 slice 指针调用此方法也是 [undefined 行为]。
unsafe fn get_unchecked(
self,
slice: *const str
) -> *const <Range<usize> as SliceIndex<str>>::Outputget_unchecked_mut
nightly-only 返回此位置输出的变量引用,而不执行任何边界检查。 即使未使用所得的引用,使用越界索引或悬垂的 slice 指针调用此方法也是 [undefined 行为]。
unsafe fn get_unchecked_mut(
self,
slice: *mut str
) -> *mut <Range<usize> as SliceIndex<str>>::Outputindex
nightly-only 返回此位置输出的共享引用,如果越界则会触发 panic。
fn index(self, slice: &str) -> &<Range<usize> as SliceIndex<str>>::Outputindex_mut
nightly-only 返回此位置输出的变量引用,如果越界则会触发 panic。
fn index_mut(
self,
slice: &mut str
) -> &mut <Range<usize> as SliceIndex<str>>::Outputimpl<Idx> Eq for Range<Idx>
impl<Idx> Eq for Range<Idx>
where
Idx: Eq,impl<A> FusedIterator for Range<A>
impl<A> FusedIterator for Range<A>
where
A: Step,impl<Idx> StructuralEq for Range<Idx>
impl<Idx> StructuralPartialEq for Range<Idx>
impl<A> TrustedLen for Range<A>
impl<A> TrustedLen for Range<A>
where
A: TrustedStep,Auto Trait Implementations
impl<Idx> RefUnwindSafe for Range<Idx>
impl<Idx> RefUnwindSafe for Range<Idx>
where
Idx: RefUnwindSafe,impl<Idx> Send for Range<Idx>
impl<Idx> Send for Range<Idx>
where
Idx: Send,impl<Idx> Sync for Range<Idx>
impl<Idx> Sync for Range<Idx>
where
Idx: Sync,impl<Idx> Unpin for Range<Idx>
impl<Idx> Unpin for Range<Idx>
where
Idx: Unpin,impl<Idx> UnwindSafe for Range<Idx>
impl<Idx> UnwindSafe for Range<Idx>
where
Idx: UnwindSafe,Blanket Implementations
impl<T> Any for T
impl<T> Any for T
where
T: 'static + ?Sized,impl<T> Borrow<T> for T
impl<T> Borrow<T> for T
where
T: ?Sized,impl<T> BorrowMut<T> for T
impl<T> BorrowMut<T> for T
where
T: ?Sized,impl<T> From<T> for T
impl<T, U> Into<U> for T
impl<T, U> Into<U> for T
where
U: From<T>,impl<I> IntoIterator for I
impl<I> IntoIterator for I
where
I: Iterator,impl<T> ToOwned for T
impl<T> ToOwned for T
where
T: Clone,impl<T, U> TryFrom<U> for T
impl<T, U> TryFrom<U> for T
where
U: Into<T>,impl<T, U> TryInto<U> for T
impl<T, U> TryInto<U> for T
where
U: TryFrom<T>,