Struct rpds::stack::Stack[][src]

pub struct Stack<T, P = RcK> where
    P: SharedPointerKind
{ /* fields omitted */ }

A persistent stack with structural sharing.

Complexity

Let n be the number of elements in the stack.

Temporal complexity

OperationAverageWorst case
new()Θ(1)Θ(1)
push()Θ(1)Θ(1)
pop()Θ(1)Θ(1)
peek()Θ(1)Θ(1)
size()Θ(1)Θ(1)
clone()Θ(1)Θ(1)
iterator creationΘ(1)Θ(1)
iterator stepΘ(1)Θ(1)
iterator fullΘ(n)Θ(n)

Implementation details

This is a thin wrapper around a List.

Implementations

impl<T> Stack<T, ArcK>[src]

#[must_use]pub fn new_sync() -> StackSync<T>[src]

impl<T> Stack<T>[src]

#[must_use]pub fn new() -> Stack<T>[src]

impl<T, P> Stack<T, P> where
    P: SharedPointerKind
[src]

#[must_use]pub fn new_with_ptr_kind() -> Stack<T, P>[src]

#[must_use]pub fn peek(&self) -> Option<&T>[src]

#[must_use]pub fn pop(&self) -> Option<Stack<T, P>>[src]

pub fn pop_mut(&mut self) -> bool[src]

#[must_use]pub fn push(&self, v: T) -> Stack<T, P>[src]

pub fn push_mut(&mut self, v: T)[src]

#[must_use]pub fn size(&self) -> usize[src]

#[must_use]pub fn is_empty(&self) -> bool[src]

#[must_use]pub fn iter(&self) -> Iter<'_, T, P>[src]

Trait Implementations

impl<T, P> Clone for Stack<T, P> where
    P: SharedPointerKind
[src]

impl<T: Debug, P: Debug> Debug for Stack<T, P> where
    P: SharedPointerKind
[src]

impl<T, P> Default for Stack<T, P> where
    P: SharedPointerKind
[src]

impl<'de, T, P> Deserialize<'de> for Stack<T, P> where
    T: Deserialize<'de>,
    P: SharedPointerKind
[src]

impl<T: Display, P> Display for Stack<T, P> where
    P: SharedPointerKind
[src]

impl<T: Eq, P> Eq for Stack<T, P> where
    P: SharedPointerKind
[src]

impl<T, P> FromIterator<T> for Stack<T, P> where
    P: SharedPointerKind
[src]

impl<T: Hash, P> Hash for Stack<T, P> where
    P: SharedPointerKind
[src]

impl<'a, T, P> IntoIterator for &'a Stack<T, P> where
    P: SharedPointerKind
[src]

type Item = &'a T

The type of the elements being iterated over.

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

Which kind of iterator are we turning this into?

impl<T: Ord, P> Ord for Stack<T, P> where
    P: SharedPointerKind
[src]

impl<T: PartialEq, P, PO> PartialEq<Stack<T, PO>> for Stack<T, P> where
    P: SharedPointerKind,
    PO: SharedPointerKind
[src]

impl<T: PartialOrd<T>, P, PO> PartialOrd<Stack<T, PO>> for Stack<T, P> where
    P: SharedPointerKind,
    PO: SharedPointerKind
[src]

impl<T, P> Serialize for Stack<T, P> where
    T: Serialize,
    P: SharedPointerKind
[src]

Auto Trait Implementations

impl<T, P> RefUnwindSafe for Stack<T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, P> Send for Stack<T, P> where
    P: Send,
    T: Send

impl<T, P> Sync for Stack<T, P> where
    P: Sync,
    T: Sync

impl<T, P> Unpin for Stack<T, P> where
    P: Unpin,
    T: Unpin

impl<T, P> UnwindSafe for Stack<T, P> where
    P: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

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.