collections::linked_list

Module collections::linked_list

A doubly-linked list with owned nodes.

The LinkedList allows pushing and popping elements at either end in constant time.

Almost always it is better to use Vec or VecDeque instead of LinkedList. In general, array-based containers are faster, more memory efficient and make better use of CPU cache.

Structs

IntoIter

An owning iterator over the elements of a LinkedList.

Iter

An iterator over the elements of a LinkedList.

IterMut

A mutable iterator over the elements of a LinkedList.

LinkedList

A doubly-linked list with owned nodes.

BackPlace [
Experimental
]

A place for insertion at the back of a LinkedList.

FrontPlace [
Experimental
]

A place for insertion at the front of a LinkedList.

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/collections/linked_list/index.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部