pub struct LinkedList<T> { /* fields omitted */ }
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.
impl<T> LinkedList<T>
[src]
pub fn new() -> LinkedList<T>
[src]
Creates an empty LinkedList
.
pub fn append(&mut self, other: &mut LinkedList<T>)
[src]
Moves all elements from other
to the end of the list.
This reuses all the nodes from other
and moves them into self
. After this operation, other
becomes empty.
This operation should compute in O(1) time and O(1) memory.
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());
pub fn iter(&self) -> Iter<T>
[src]
impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
Provides a forward iterator.
use std::collections::LinkedList; let mut list: LinkedList<u32> = LinkedList::new(); list.push_back(0); list.push_back(1); list.push_back(2); let mut iter = list.iter(); assert_eq!(iter.next(), Some(&0)); assert_eq!(iter.next(), Some(&1)); assert_eq!(iter.next(), Some(&2)); assert_eq!(iter.next(), None);
pub fn iter_mut(&mut self) -> IterMut<T>
[src]
impl<'a, T> Iterator for IterMut<'a, T> type Item = &'a mut T;
Provides a forward iterator with mutable references.
use std::collections::LinkedList; let mut list: LinkedList<u32> = LinkedList::new(); list.push_back(0); list.push_back(1); list.push_back(2); for element in list.iter_mut() { *element += 10; } let mut iter = list.iter(); assert_eq!(iter.next(), Some(&10)); assert_eq!(iter.next(), Some(&11)); assert_eq!(iter.next(), Some(&12)); assert_eq!(iter.next(), None);
pub fn is_empty(&self) -> bool
[src]
Returns true
if the LinkedList
is empty.
This operation should compute in O(1) time.
pub fn len(&self) -> usize
[src]
Returns the length of the LinkedList
.
This operation should compute in O(1) time.
pub fn clear(&mut self)
[src]
Removes all elements from the LinkedList
.
This operation should compute in O(n) time.
pub fn contains(&self, x: &T) -> bool where
T: PartialEq<T>,
[src]1.12.0
Returns true
if the LinkedList
contains an element equal to the given value.
pub fn front(&self) -> Option<&T>
[src]
Provides a reference to the front element, or None
if the list is empty.
pub fn front_mut(&mut self) -> Option<&mut T>
[src]
Provides a mutable reference to the front element, or None
if the list is empty.
pub fn back(&self) -> Option<&T>
[src]
Provides a reference to the back element, or None
if the list is empty.
pub fn back_mut(&mut self) -> Option<&mut T>
[src]
Provides a mutable reference to the back element, or None
if the list is empty.
pub fn push_front(&mut self, elt: T)
[src]
Adds an element first in the list.
This operation should compute in O(1) time.
pub fn pop_front(&mut self) -> Option<T>
[src]
Removes the first element and returns it, or None
if the list is empty.
This operation should compute in O(1) time.
pub fn push_back(&mut self, elt: T)
[src]
Appends an element to the back of a list.
This operation should compute in O(1) time.
pub fn pop_back(&mut self) -> Option<T>
[src]
Removes the last element from a list and returns it, or None
if it is empty.
This operation should compute in O(1) time.
pub fn split_off(&mut self, at: usize) -> LinkedList<T>
[src]
Splits the list into two at the given index. Returns everything after the given index, including the index.
This operation should compute in O(n) time.
Panics if at > len
.
pub fn drain_filter<F>(&mut self, filter: F) -> DrainFilter<T, F> where
F: FnMut(&mut T) -> bool,
[src]
impl<'_, T, F> Iterator for DrainFilter<'_, T, F> where F: FnMut(&mut T) -> bool, type Item = T;
Creates an iterator which uses a closure to determine if an element should be removed.
If the closure returns true, then the element is removed and yielded. If the closure returns false, the element will remain in the list and will not be yielded by the iterator.
Note that drain_filter
lets you mutate every element in the filter closure, regardless of whether you choose to keep or remove it.
Splitting a list into evens and odds, reusing the original list:
#![feature(drain_filter)] use std::collections::LinkedList; let mut numbers: LinkedList<u32> = LinkedList::new(); numbers.extend(&[1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 15]); let evens = numbers.drain_filter(|x| *x % 2 == 0).collect::<LinkedList<_>>(); let odds = numbers; assert_eq!(evens.into_iter().collect::<Vec<_>>(), vec![2, 4, 6, 8, 14]); assert_eq!(odds.into_iter().collect::<Vec<_>>(), vec![1, 3, 5, 9, 11, 13, 15]);
impl<T> Send for LinkedList<T> where
T: Send,
[src]
impl<T> Hash for LinkedList<T> where
T: Hash,
[src]
fn hash<H>(&self, state: &mut H) where
H: Hasher,
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
[src]1.3.0
Feeds a slice of this type into the given [Hasher
]. Read more
impl<T> Eq for LinkedList<T> where
T: Eq,
[src]
impl<T> Extend<T> for LinkedList<T>
[src]
fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = T>,
[src]
impl<'a, T> Extend<&'a T> for LinkedList<T> where
T: 'a + Copy,
[src]1.2.0
fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = &'a T>,
[src]
impl<T> Ord for LinkedList<T> where
T: Ord,
[src]
fn cmp(&self, other: &LinkedList<T>) -> Ordering
[src]
fn max(self, other: Self) -> Self
[src]1.21.0
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
[src]1.21.0
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self
[src]
Restrict a value to a certain interval. Read more
impl<T> Debug for LinkedList<T> where
T: Debug,
[src]
impl<'a, T> IntoIterator for &'a mut LinkedList<T>
[src]
type Item = &'a mut T
The type of the elements being iterated over.
type IntoIter = IterMut<'a, T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> IterMut<'a, T>
[src]
impl<'a, T> Iterator for IterMut<'a, T> type Item = &'a mut T;
impl<'a, T> IntoIterator for &'a LinkedList<T>
[src]
type Item = &'a T
The type of the elements being iterated over.
type IntoIter = Iter<'a, T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Iter<'a, T>
[src]
impl<'a, T> Iterator for Iter<'a, T> type Item = &'a T;
impl<T> IntoIterator for LinkedList<T>
[src]
type Item = T
The type of the elements being iterated over.
type IntoIter = IntoIter<T>
Which kind of iterator are we turning this into?
fn into_iter(self) -> IntoIter<T>
[src]
impl<T> Iterator for IntoIter<T> type Item = T;
Consumes the list into an iterator yielding elements by value.
impl<T> Drop for LinkedList<T>
[src]
impl<T> PartialEq<LinkedList<T>> for LinkedList<T> where
T: PartialEq<T>,
[src]
fn eq(&self, other: &LinkedList<T>) -> bool
[src]
fn ne(&self, other: &LinkedList<T>) -> bool
[src]
impl<T> Clone for LinkedList<T> where
T: Clone,
[src]
fn clone(&self) -> LinkedList<T>
[src]
fn clone_from(&mut self, source: &Self)
[src]
Performs copy-assignment from source
. Read more
impl<T> FromIterator<T> for LinkedList<T>
[src]
fn from_iter<I>(iter: I) -> LinkedList<T> where
I: IntoIterator<Item = T>,
[src]
impl<T> Default for LinkedList<T>
[src]
fn default() -> LinkedList<T>
[src]
Creates an empty LinkedList<T>
.
impl<T> PartialOrd<LinkedList<T>> for LinkedList<T> where
T: PartialOrd<T>,
[src]
fn partial_cmp(&self, other: &LinkedList<T>) -> Option<Ordering>
[src]
fn lt(&self, other: &Rhs) -> bool
[src]
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Rhs) -> bool
[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Rhs) -> bool
[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<T> Sync for LinkedList<T> where
T: Sync,
[src]
impl<T> UnwindSafe for LinkedList<T> where
T: RefUnwindSafe + UnwindSafe,
impl<T> RefUnwindSafe for LinkedList<T> where
T: RefUnwindSafe,
impl<T> Unpin for LinkedList<T> where
T: Unpin,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<I> IntoIterator for I where
I: Iterator,
[src]
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
impl<T> From<T> for T
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
fn borrow(&self) -> &T
[src]
impl<'_, F> Future for &'_ mut F where F: Unpin + Future + ?Sized, type Output = <F as Future>::Output; impl<'_, I> Iterator for &'_ mut I where I: Iterator + ?Sized, type Item = <I as Iterator>::Item; impl<'_, R: Read + ?Sized> Read for &'_ mut R impl<'_, W: Write + ?Sized> Write for &'_ mut W
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
fn borrow_mut(&mut self) -> &mut T
[src]
impl<'_, F> Future for &'_ mut F where F: Unpin + Future + ?Sized, type Output = <F as Future>::Output; impl<'_, I> Iterator for &'_ mut I where I: Iterator + ?Sized, type Item = <I as Iterator>::Item; impl<'_, R: Read + ?Sized> Read for &'_ mut R impl<'_, W: Write + ?Sized> Write for &'_ mut W
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
© 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/std/collections/struct.LinkedList.html