[][src]Trait splr::traits::Delete

pub trait Delete<T> {
    fn delete_unstable<F>(&mut self, filter: F)
    where
        F: FnMut(&T) -> bool
; }

API for O(n) deletion from a list, providing delete_unstable.

Required methods

fn delete_unstable<F>(&mut self, filter: F) where
    F: FnMut(&T) -> bool

O(n) item deletion protocol.

Loading content...

Implementations on Foreign Types

impl<T> Delete<T> for Vec<T>[src]

Loading content...

Implementors

Loading content...