pub struct Stack<T, P = RcK>where
P: SharedPointerKind,{ /* private fields */ }
Expand description
A persistent stack with structural sharing.
§Complexity
Let n be the number of elements in the stack.
§Temporal complexity
Operation | Average | Worst 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§
Source§impl<T, P> Stack<T, P>where
P: SharedPointerKind,
impl<T, P> Stack<T, P>where
P: SharedPointerKind,
pub fn new_with_ptr_kind() -> Stack<T, P>
pub fn peek(&self) -> Option<&T>
pub fn pop(&self) -> Option<Stack<T, P>>
pub fn pop_mut(&mut self) -> bool
pub fn push(&self, v: T) -> Stack<T, P>
pub fn push_mut(&mut self, v: T)
pub fn size(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn iter(&self) -> Iter<'_, T, P>
Trait Implementations§
Source§impl<T, P> Clone for Stack<T, P>where
P: SharedPointerKind,
impl<T, P> Clone for Stack<T, P>where
P: SharedPointerKind,
Source§impl<T, P> Default for Stack<T, P>where
P: SharedPointerKind,
impl<T, P> Default for Stack<T, P>where
P: SharedPointerKind,
Source§impl<'de, T, P> Deserialize<'de> for Stack<T, P>where
T: Deserialize<'de>,
P: SharedPointerKind,
impl<'de, T, P> Deserialize<'de> for Stack<T, P>where
T: Deserialize<'de>,
P: SharedPointerKind,
Source§fn deserialize<D: Deserializer<'de>>(
deserializer: D,
) -> Result<Stack<T, P>, D::Error>
fn deserialize<D: Deserializer<'de>>( deserializer: D, ) -> Result<Stack<T, P>, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl<T, P> FromIterator<T> for Stack<T, P>where
P: SharedPointerKind,
impl<T, P> FromIterator<T> for Stack<T, P>where
P: SharedPointerKind,
Source§impl<'a, T, P> IntoIterator for &'a Stack<T, P>where
P: SharedPointerKind,
impl<'a, T, P> IntoIterator for &'a Stack<T, P>where
P: SharedPointerKind,
Source§impl<T: Ord, P> Ord for Stack<T, P>where
P: SharedPointerKind,
impl<T: Ord, P> Ord for Stack<T, P>where
P: SharedPointerKind,
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<T: PartialEq, P, PO> PartialEq<Stack<T, PO>> for Stack<T, P>where
P: SharedPointerKind,
PO: SharedPointerKind,
impl<T: PartialEq, P, PO> PartialEq<Stack<T, PO>> for Stack<T, P>where
P: SharedPointerKind,
PO: SharedPointerKind,
Source§impl<T: PartialOrd<T>, P, PO> PartialOrd<Stack<T, PO>> for Stack<T, P>where
P: SharedPointerKind,
PO: SharedPointerKind,
impl<T: PartialOrd<T>, P, PO> PartialOrd<Stack<T, PO>> for Stack<T, P>where
P: SharedPointerKind,
PO: SharedPointerKind,
impl<T: Eq, P> Eq for Stack<T, P>where
P: SharedPointerKind,
Auto Trait Implementations§
impl<T, P> Freeze for Stack<T, P>where
P: Freeze,
impl<T, P> RefUnwindSafe for Stack<T, P>where
P: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, P> Send for Stack<T, P>
impl<T, P> Sync for Stack<T, P>
impl<T, P> Unpin for Stack<T, P>
impl<T, P> UnwindSafe for Stack<T, P>where
P: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more