本文簡要介紹rust語言中 std::vec::Vec.swap_remove
的用法。
用法
pub fn swap_remove(&mut self, index: usize) -> T
從向量中移除一個元素並返回它。
移除的元素被向量的最後一個元素替換。
這不會保留順序,但可以O(1).如果需要保留元素順序,請使用std::vec::Vec.remove反而。
Panics
如果 index
超出範圍,則會出現Panics。
例子
let mut v = vec!["foo", "bar", "baz", "qux"];
assert_eq!(v.swap_remove(1), "bar");
assert_eq!(v, ["foo", "qux", "baz"]);
assert_eq!(v.swap_remove(0), "foo");
assert_eq!(v, ["baz", "qux"]);
相關用法
- Rust Vec.shrink_to_fit用法及代碼示例
- Rust Vec.set_len用法及代碼示例
- Rust Vec.splice用法及代碼示例
- Rust Vec.split_off用法及代碼示例
- Rust Vec.split_at_spare_mut用法及代碼示例
- Rust Vec.spare_capacity_mut用法及代碼示例
- Rust Vec.shrink_to用法及代碼示例
- Rust Vec.drain用法及代碼示例
- Rust Vec.into_raw_parts用法及代碼示例
- Rust Vec.resize用法及代碼示例
- Rust Vec.is_empty用法及代碼示例
- Rust Vec.reserve_exact用法及代碼示例
- Rust Vec.retain_mut用法及代碼示例
- Rust Vec.try_reserve_exact用法及代碼示例
- Rust Vec.new_in用法及代碼示例
- Rust Vec.insert用法及代碼示例
- Rust Vec.retain用法及代碼示例
- Rust Vec.with_capacity用法及代碼示例
- Rust Vec.from_raw_parts用法及代碼示例
- Rust Vec.into_boxed_slice用法及代碼示例
- Rust Vec.reserve用法及代碼示例
- Rust Vec.dedup_by用法及代碼示例
- Rust Vec.as_mut_slice用法及代碼示例
- Rust Vec.dedup用法及代碼示例
- Rust Vec.as_ptr用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::vec::Vec.swap_remove。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。