Struct small_vec2::DrainFilter[][src]

pub struct DrainFilter<'a, T, F, const INLINE_CAPACITY: usize> where
    F: FnMut(&mut T) -> bool
{ /* fields omitted */ }

An iterator which uses a closure to determine if an element should be removed.

Example

let mut v: SmallVec<_, 3> = SmallVec::from(vec![0, 1, 2]);
let iter: DrainFilter<_, _, 3> = v.drain_filter(|x| *x % 2 == 0);

Implementations

impl<'a, T, F, const INLINE_CAPACITY: usize> DrainFilter<'a, T, F, INLINE_CAPACITY> where
    F: FnMut(&mut T) -> bool
[src]

pub fn new(
    vec: &'a mut SmallVec<T, INLINE_CAPACITY>,
    idx: usize,
    del: usize,
    old_len: usize,
    pred: F,
    panic_flag: bool
) -> Self
[src]

Trait Implementations

impl<'a, T: Debug, F: Debug, const INLINE_CAPACITY: usize> Debug for DrainFilter<'a, T, F, INLINE_CAPACITY> where
    F: FnMut(&mut T) -> bool
[src]

impl<T, F, const INLINE_CAPACITY: usize> Drop for DrainFilter<'_, T, F, INLINE_CAPACITY> where
    F: FnMut(&mut T) -> bool
[src]

impl<T, F, const INLINE_CAPACITY: usize> Iterator for DrainFilter<'_, T, F, INLINE_CAPACITY> where
    F: FnMut(&mut T) -> bool
[src]

type Item = T

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, T, F, const INLINE_CAPACITY: usize> RefUnwindSafe for DrainFilter<'a, T, F, INLINE_CAPACITY> where
    F: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, T, F, const INLINE_CAPACITY: usize> Send for DrainFilter<'a, T, F, INLINE_CAPACITY> where
    F: Send,
    T: Send

impl<'a, T, F, const INLINE_CAPACITY: usize> Sync for DrainFilter<'a, T, F, INLINE_CAPACITY> where
    F: Sync,
    T: Sync

impl<'a, T, F, const INLINE_CAPACITY: usize> Unpin for DrainFilter<'a, T, F, INLINE_CAPACITY> where
    F: Unpin

impl<'a, T, F, const INLINE_CAPACITY: usize> !UnwindSafe for DrainFilter<'a, T, F, INLINE_CAPACITY>

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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?

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.