pub trait VecTExt<T> {
    fn get_or_extend_with<F>(&mut self, i: usize, f: F) -> &mut T
    where
        F: FnMut() -> T
; }

Required Methods

Implementations on Foreign Types

Implementors