当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust LinkedList.append用法及代码示例


本文简要介绍rust语言中 alloc::collections::linked_list::LinkedList.append 的用法。

用法

pub fn append(&mut self, other: &mut Self)

将所有元素从 other 移动到列表末尾。

这将重用 other 中的所有节点并将它们移动到 self 中。此操作后,other 变为空。

此操作应在 O(1) 时间和 O(1) 内存中计算。

例子

use std::collections::LinkedList;

let mut list1 = LinkedList::new();
list1.push_back('a');

let mut list2 = LinkedList::new();
list2.push_back('b');
list2.push_back('c');

list1.append(&mut list2);

let mut iter = list1.iter();
assert_eq!(iter.next(), Some(&'a'));
assert_eq!(iter.next(), Some(&'b'));
assert_eq!(iter.next(), Some(&'c'));
assert!(iter.next().is_none());

assert!(list2.is_empty());

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 alloc::collections::linked_list::LinkedList.append。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。