本文簡要介紹rust語言中 slice.swap_unchecked
的用法。
用法
pub unsafe fn swap_unchecked(&mut self, a: usize, b: usize)
交換切片中的兩個元素,而不進行邊界檢查。
有關安全的替代方案,請參閱 swap
。
參數
- a - 第一個元素的索引
- b - 第二個元素的索引
安全性
使用越界索引調用此方法是未定義的行為。調用者必須確保a < self.len()
和b < self.len()
.
例子
#![feature(slice_swap_unchecked)]
let mut v = ["a", "b", "c", "d"];
// SAFETY: we know that 1 and 3 are both indices of the slice
unsafe { v.swap_unchecked(1, 3) };
assert!(v == ["a", "d", "c", "b"]);
相關用法
- Rust slice.swap_with_slice用法及代碼示例
- Rust slice.swap用法及代碼示例
- 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_unchecked。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。