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

Required Methods

Implementors