pub struct LinkedList<V, T> { /* private fields */ }
Expand description

A double-linked linked list implementation powered by a generational arena.

Implementations§

source§

impl<V, T> LinkedList<V, T>
where V: Vector<Entry<Node<T>>>,

source

pub fn with_backing_vector(vector: V) -> Self

source

pub fn clear(&mut self) -> Result<(), ListError<V::Error>>

source

pub fn reserve(&mut self, additional: usize) -> Result<(), ListError<V::Error>>

source

pub fn capacity(&self) -> usize

source

pub fn len(&self) -> usize

source

pub fn is_empty(&self) -> bool

source

pub fn get_mut(&mut self, link: &Link) -> Option<&mut T>

source

pub fn get(&self, link: &Link) -> Option<&T>

source

pub fn push_front(&mut self, value: T) -> Result<Link, ListError<V::Error>>

source

pub fn push_back(&mut self, value: T) -> Result<Link, ListError<V::Error>>

source

pub fn peek_front(&self) -> Option<&T>

source

pub fn peek_back(&self) -> Option<&T>

source

pub fn remove(&mut self, link: &Link) -> Option<T>

source

pub fn pop_front(&mut self) -> Option<T>

source

pub fn pop_back(&mut self) -> Option<T>

source

pub fn shift_push_front(&mut self, link: &Link) -> Option<()>

source

pub fn shift_push_back(&mut self, link: &Link) -> Option<()>

source

pub fn iter(&self) -> Iter<'_, V, T>

Trait Implementations§

source§

impl<V, T> Default for LinkedList<V, T>
where V: Default + Vector<Entry<Node<T>>>,

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'a, V, T> IntoIterator for &'a LinkedList<V, T>
where V: Vector<Entry<Node<T>>>,

§

type Item = (&'a Link, &'a T)

The type of the elements being iterated over.
§

type IntoIter = Iter<'a, V, T>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<V, T> RefUnwindSafe for LinkedList<V, T>

§

impl<V, T> Send for LinkedList<V, T>
where T: Send, V: Send,

§

impl<V, T> Sync for LinkedList<V, T>
where T: Sync, V: Sync,

§

impl<V, T> Unpin for LinkedList<V, T>
where T: Unpin, V: Unpin,

§

impl<V, T> UnwindSafe for LinkedList<V, T>
where T: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.