本文简要介绍rust语言中 slice.swap
的用法。
用法
pub fn swap(&mut self, a: usize, b: usize)
交换切片中的两个元素。
参数
- a - 第一个元素的索引
- b - 第二个元素的索引
Panics
如果 a
或 b
超出范围,则会出现Panics。
例子
let mut v = ["a", "b", "c", "d", "e"];
v.swap(2, 4);
assert!(v == ["a", "b", "e", "d", "c"]);
相关用法
- Rust slice.swap_unchecked用法及代码示例
- Rust slice.swap_with_slice用法及代码示例
- Rust slice.sort_unstable_by_key用法及代码示例
- Rust slice.sort_unstable_by用法及代码示例
- Rust slice.sort用法及代码示例
- Rust slice.split_array_mut用法及代码示例
- Rust slice.splitn_mut用法及代码示例
- Rust slice.split_first用法及代码示例
- Rust slice.splitn用法及代码示例
- Rust slice.split_array_ref用法及代码示例
- Rust slice.sort_by用法及代码示例
- Rust slice.split用法及代码示例
- Rust slice.split_inclusive用法及代码示例
- Rust slice.split_mut用法及代码示例
- Rust slice.strip_suffix用法及代码示例
- Rust slice.split_last_mut用法及代码示例
- Rust slice.split_first_mut用法及代码示例
- Rust slice.select_nth_unstable用法及代码示例
- Rust slice.sort_unstable用法及代码示例
- Rust slice.split_at_mut用法及代码示例
- Rust slice.select_nth_unstable_by用法及代码示例
- Rust slice.split_at_unchecked用法及代码示例
- Rust slice.split_at用法及代码示例
- Rust slice.split_at_mut_unchecked用法及代码示例
- Rust slice.strip_prefix用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 slice.swap。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。